From b591137c1ef79a6ace0ecd83ad3d55a61202277f Mon Sep 17 00:00:00 2001 From: Sfan5 Date: Fri, 17 Jan 2014 17:16:14 +0100 Subject: [PATCH] Increase the chances of someone receiving a different response when using !tell --- tell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tell.py b/tell.py index 0ff25b5..ff54291 100755 --- a/tell.py +++ b/tell.py @@ -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)