set the guild's id as the config value because lists arent allowed
and this is apparently a list
This commit is contained in:
parent
f6da14636a
commit
52d3d39241
1 changed files with 3 additions and 2 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue