aboutsummaryrefslogtreecommitdiffstats
path: root/bot/utils/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/utils/__init__.py')
-rw-r--r--bot/utils/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/utils/__init__.py b/bot/utils/__init__.py
index 2fac2086..09a4dfc3 100644
--- a/bot/utils/__init__.py
+++ b/bot/utils/__init__.py
@@ -51,7 +51,7 @@ async def disambiguate(
choices = (f"{index}: {entry}" for index, entry in enumerate(entries, start=1))
def check(message: discord.Message) -> bool:
- return (message.content.isdigit()
+ return (message.content.isdecimal()
and message.author == ctx.author
and message.channel == ctx.channel)
@@ -87,7 +87,7 @@ async def disambiguate(
except asyncio.TimeoutError:
raise BadArgument("Timed out.")
- # Guaranteed to not error because of isdigit() in check
+ # Guaranteed to not error because of isdecimal() in check
index = int(result.content)
try: