From 19d20395c733ab4ae30d3d2551d2a10c3754b066 Mon Sep 17 00:00:00 2001 From: Sfan5 Date: Mon, 24 Feb 2014 13:42:46 +0100 Subject: [PATCH] Fix a stupid bug, thanks to @ShadowNinja --- tell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tell.py b/tell.py index bf8c8d8..5a30ff7 100755 --- a/tell.py +++ b/tell.py @@ -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)