From 923086238f71cc204fe4582ac2ad4cae79228cb4 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Thu, 4 Jan 2024 13:58:26 -0600 Subject: [PATCH] Don't judge me --- cogs/players.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cogs/players.py b/cogs/players.py index 382aa7b..5fecf34 100644 --- a/cogs/players.py +++ b/cogs/players.py @@ -341,7 +341,13 @@ class Players(commands.Cog): elif 'z' in spoiler_text: chance = 'Medium' else: - chance = 'Low' + d3 = random.randint(1, 3) + if d3 == 1: + chance = 'Low' + elif d3 == 2: + chance = 'Medium' + elif d3 == 3: + chance = 'High' 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.')