Browse Source

stop being dumb

pull/160/head
A5rocks 5 years ago
parent
commit
0cf16b638e
  1. 14
      disco/bot/bot.py
  2. 2
      tests/bot/bot.py

14
disco/bot/bot.py

@ -350,13 +350,13 @@ class Bot(LoggingClass):
# This may lead to unexpected results, but said unexpectedness # This may lead to unexpected results, but said unexpectedness
# should be easy to avoid. An example of the unexpected results # should be easy to avoid. An example of the unexpected results
# that may occur would be if one prefix was `!` and one was `!a`. # that may occur would be if one prefix was `!` and one was `!a`.
if any([content.startswith(prefix) for prefix in prefixes]) and not require_mention: for prefix in prefixes:
for prefix in prefixes: if prefix and content.startswith(prefix) and not require_mention: # don't cut off commands with mentions.
if prefix and content.startswith(prefix): content = content[len(prefix):]
content = content[len(prefix):] break
break else:
elif not require_mention: if not require_mention: # don't want to prematurely return
return [] return []
if not self.command_matches_re or not self.command_matches_re.match(content): if not self.command_matches_re or not self.command_matches_re.match(content):
return [] return []

2
tests/bot/bot.py

@ -99,5 +99,5 @@ class TestBot(TestCase):
self.assertEqual(commands[1][0], self.bot._commands[0]) self.assertEqual(commands[1][0], self.bot._commands[0])
msg.content = '?test' msg.content = '?test'
commands = list(self.bot.get_commands_for_message(False, None, ['!', '?', ';'], msg, ['?', ';'])) commands = list(self.bot.get_commands_for_message(False, None, ['!', '?', ';'], msg))
self.assertEqual(commands[0][0], self.bot._commands[0]) self.assertEqual(commands[0][0], self.bot._commands[0])

Loading…
Cancel
Save