From 6b6b20a9f82600bee96fcaf33d7b8fa9531b0c5c Mon Sep 17 00:00:00 2001 From: A5rocks <40616000+A5rocks@users.noreply.github.com> Date: Tue, 31 Dec 2019 06:45:20 +0900 Subject: [PATCH] Remove unintuitive behaviour. Previously, if you had `{@mention} {prefix}{command}`, `require_mention` was set to `True`, and `prefixes` were set to anything, then the command framework would look for a command named `{prefix}{command}`. However, this specific grouping of settings would not be chosen unless the bot creator wanted the command framework to look for `{command}`. tl;dr settings weren't being respected --- disco/bot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disco/bot/bot.py b/disco/bot/bot.py index 3c868b2..43fa073 100644 --- a/disco/bot/bot.py +++ b/disco/bot/bot.py @@ -351,7 +351,7 @@ class Bot(LoggingClass): # should be easy to avoid. An example of the unexpected results # that may occur would be if one prefix was `!` and one was `!a`. 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):] break else: