From 54b0ac2538fcd9b22dade1f9fe477254cdf48fc3 Mon Sep 17 00:00:00 2001 From: phxntxm Date: Tue, 5 Feb 2019 23:52:52 -0600 Subject: [PATCH] Don't override the default hugs --- cogs/interaction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/interaction.py b/cogs/interaction.py index 5b3720b..79841b2 100644 --- a/cogs/interaction.py +++ b/cogs/interaction.py @@ -146,7 +146,7 @@ class Interaction: "SELECT custom_hugs, include_default_hugs FROM guilds WHERE id = $1", ctx.guild.id ) - msgs = hugs + msgs = hugs.copy() if settings: custom_msgs = settings["custom_hugs"] default_on = settings["include_default_hugs"]