Increase the chances of someone receiving a different response when using !tell

master
Sfan5 2014-01-17 17:16:14 +01:00
parent e749f19b3d
commit b591137c1e
1 changed files with 2 additions and 2 deletions

View File

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