diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/evergreen/wikipedia.py | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/bot/exts/evergreen/wikipedia.py b/bot/exts/evergreen/wikipedia.py index 7fac3575..e18c0b79 100644 --- a/bot/exts/evergreen/wikipedia.py +++ b/bot/exts/evergreen/wikipedia.py @@ -77,8 +77,10 @@ class WikipediaCog(commands.Cog):              try:                  message = await ctx.bot.wait_for('message', timeout=60.0, check=check)                  response_from_user = await self.bot.get_context(message) +                                  if response_from_user.command:                      return +                                      response = int(message.content)                  if response < 0:                      await ctx.send(f"Sorry, but you can't give negative index, {error_msg}") | 
