From d2c31b6d4e8b9cce9f9d2a1ee6991cfe9647abfd Mon Sep 17 00:00:00 2001 From: Yuki Joou Date: Sun, 26 Feb 2023 16:48:41 +0100 Subject: [PATCH] main: Fixup marriage denial not stopping marriage --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 6a1e12c..b24c188 100755 --- a/main.py +++ b/main.py @@ -129,6 +129,7 @@ async def marry( await context.respond( "no consent == no marriage! consent is key to a happy life :3" ) + return # Marriage was accepted, yay :3! # Now check for polycules @@ -142,7 +143,6 @@ async def marry( await context.respond( f"{marriage_asker.mention} married {member_to_marry.mention}" ) - return users_who_confirmed_the_marriage = [marriage_asker.id, member_to_marry.id]