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()