We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 861e68e commit 0746a73Copy full SHA for 0746a73
protobot.py
@@ -27,7 +27,7 @@
27
#####################################
28
#
29
COMMAND_PREFIX = '!' #
30
-VERSION = "v0.5.1-alpha" #
+VERSION = "v0.5.2-alpha" #
31
ACTIVITY = discord.Game("!help") #
32
LOG_LEVEL = logging.INFO #
33
@@ -398,7 +398,7 @@ async def count_poll_results(message_sent, poll_time_in_sec):
398
# Check for ties
399
tie = False
400
for result in results.keys():
401
- if results[result] == results[winner]:
+ if results[result] == results[winner] and result != winner:
402
tie = True
403
404
# If there's a tie, find out which results tied and make a string out of them, then print results
0 commit comments