Fix a stupid bug, thanks to @ShadowNinja

master
Sfan5 2014-02-24 13:42:46 +01:00
parent 66fc3f6a78
commit 19d20395c7
1 changed files with 2 additions and 2 deletions

View File

@ -40,8 +40,8 @@ def tell(phenny, input):
response = "I'll pass that on when %s is around" % target
rand = random.random()
if rand > 0.75: response = "yeah, yeah"
elif rand > 0.85: response = "yeah, sure, whatever"
if rand > 0.85: response = "yeah, sure, whatever"
elif rand > 0.75: response = "yeah, yeah"
phenny.reply(response)