Don't judge me

This commit is contained in:
Cal Corum 2024-01-04 13:58:26 -06:00
parent a2e8f4b3eb
commit 923086238f

View File

@ -341,7 +341,13 @@ class Players(commands.Cog):
elif 'z' in spoiler_text: elif 'z' in spoiler_text:
chance = 'Medium' chance = 'Medium'
else: else:
d3 = random.randint(1, 3)
if d3 == 1:
chance = 'Low' chance = 'Low'
elif d3 == 2:
chance = 'Medium'
elif d3 == 3:
chance = 'High'
ping_role = get_role(message, 'Deez Watch', self.bot) ping_role = get_role(message, 'Deez Watch', self.bot)
await message.channel.send(f'{ping_role.mention} there is a **{chance}** chance this is a deez nuts joke.') await message.channel.send(f'{ping_role.mention} there is a **{chance}** chance this is a deez nuts joke.')