change combo limits

This commit is contained in:
TN 2020-06-19 07:21:02 +00:00
parent bd6d7519e4
commit 9eca923539

View file

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