diff --git a/src/cogs/misc.py b/src/cogs/misc.py index 4f11ec0..c43587c 100644 --- a/src/cogs/misc.py +++ b/src/cogs/misc.py @@ -324,9 +324,9 @@ async def coinflip(self, interaction: discord.Interaction): """ random_result = random.randint(1, 100) # We use 1 and not 0 to avoid a tie - if random_result >= 50: # And by including 50 we avoid that tie + if random_result > 50: # And by including 50 we avoid that tie outcome = "Kron" - elif random_result < 50: + elif random_result <= 50: outcome = "Mynt" await interaction.response.send_message(outcome)