From fc72bc941ec12d28aba6b7c3f81a852f4bb1f4b4 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Fri, 5 Jan 2024 13:41:04 -0600 Subject: [PATCH] Just don't look please --- cogs/players.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/cogs/players.py b/cogs/players.py index 5fecf34..037a445 100644 --- a/cogs/players.py +++ b/cogs/players.py @@ -341,13 +341,19 @@ class Players(commands.Cog): elif 'z' in spoiler_text: chance = 'Medium' else: - d3 = random.randint(1, 3) - if d3 == 1: + d1000 = random.randint(1, 1000) + if d1000 <= 300: chance = 'Low' - elif d3 == 2: + elif d1000 <= 600: chance = 'Medium' - elif d3 == 3: + elif d1000 <= 900: chance = 'High' + elif d1000 <= 950: + chance = 'Miniscule' + elif d1000 <= 980: + chance = 'Throbbing' + else: + chance = 'Deez Nuts' 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.')