changed max coins on request of R2D2Warrior

This commit is contained in:
neersighted 2012-04-22 17:54:00 -07:00
parent 1ca04b6b3e
commit 99ce2f09a6

View file

@ -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)