From 52d3d39241e3cadc944e5085173e4b0b58c0ef64 Mon Sep 17 00:00:00 2001 From: Adrian Edwards <17362949+MoralCode@users.noreply.github.com> Date: Sun, 18 Oct 2020 16:31:45 -0700 Subject: [PATCH] set the guild's id as the config value because lists arent allowed and this is apparently a list --- discover_overlay/text_settings.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/discover_overlay/text_settings.py b/discover_overlay/text_settings.py index dbb328d..a00aef3 100644 --- a/discover_overlay/text_settings.py +++ b/discover_overlay/text_settings.py @@ -368,8 +368,9 @@ class TextSettingsWindow(SettingsWindow): def change_guild(self, button): if self.ignore_guild_change: return - g = self.guild_lookup[button.get_active()] - self.guild = g + g = self.guild_lookup[button.get_active()] + # get the guilds ID because config values must be strings + self.guild = g[0] self.save_config() def change_placement(self, button):