From 99ce2f09a6610817cb858e414dd78ca6f5f9aa38 Mon Sep 17 00:00:00 2001 From: neersighted Date: Sun, 22 Apr 2012 17:54:00 -0700 Subject: [PATCH] changed max coins on request of R2D2Warrior --- plugins/coin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/coin.py b/plugins/coin.py index 6cd4ace..5d2f3d9 100755 --- a/plugins/coin.py +++ b/plugins/coin.py @@ -29,8 +29,8 @@ def coin(inp): else: count = 1 - if count > 200: - return "Too many coins! Maximum is 200." + if count > 9001: + return "Too many coins! Maximum is 9001." # depending on the count, we use two different methods to get the output if count == 1: flip = random.randint(0, 1)