mirror of
https://github.com/Death916/combo.git
synced 2026-04-10 03:04:41 -07:00
change combo limits
This commit is contained in:
parent
bd6d7519e4
commit
9eca923539
1 changed files with 3 additions and 3 deletions
6
combo.py
6
combo.py
|
|
@ -63,9 +63,9 @@ def main():
|
||||||
combo += 1
|
combo += 1
|
||||||
|
|
||||||
if message.rstrip() == "!combo":
|
if message.rstrip() == "!combo":
|
||||||
if combo < 5:
|
if combo > 2:
|
||||||
send(last_nick + " is on a " + str(combo) + " message streak", channel)
|
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)
|
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:
|
if name.lower() == admin.lower() and message.rstrip() == exit_code:
|
||||||
|
|
@ -90,4 +90,4 @@ def main():
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue