aboutsummaryrefslogtreecommitdiff
path: root/cogs/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'cogs/utils.py')
-rwxr-xr-xcogs/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cogs/utils.py b/cogs/utils.py
index 5448843..fa0103f 100755
--- a/cogs/utils.py
+++ b/cogs/utils.py
@@ -110,12 +110,12 @@ class Utils(commands.Cog):
}
if ctx.author.id in rigged_findseed:
- totalEyes = rigged_findseed[ctx.author.id]
+ total_eyes = rigged_findseed[ctx.author.id]
else:
total_eyes = sum([1 for i in range(12) if randint(1,10) == 1])
await ctx.send(
- f"{discord.utils.escape_mentions(ctx.message.author.display_name)} -> your seed is a {totalEyes} eye"
+ f"{discord.utils.escape_mentions(ctx.message.author.display_name)} -> your seed is a {total_eyes} eye"
)
@findseed.error