From 9eca923539cf3a044a41435d5bf674c3194978e5 Mon Sep 17 00:00:00 2001 From: TN Date: Fri, 19 Jun 2020 07:21:02 +0000 Subject: [PATCH] change combo limits --- combo.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/combo.py b/combo.py index 66ad4a4..4f3f450 100644 --- a/combo.py +++ b/combo.py @@ -63,9 +63,9 @@ def main(): combo += 1 if message.rstrip() == "!combo": - if combo < 5: + if combo > 2: send(last_nick + " is on a " + str(combo) + " message streak", channel) - elif combo >= 6: + elif combo >= 10: send(last_nick + " is on a " + str(combo) + " message streak. they're talkin to themselves", channel) if name.lower() == admin.lower() and message.rstrip() == exit_code: @@ -90,4 +90,4 @@ def main(): if __name__ == '__main__': - main() \ No newline at end of file + main()