massregister is an explicit command, should reflect that in handling of the toggle

This commit is contained in:
michael
2018-01-30 18:08:04 -05:00
parent 37c808a9a1
commit 115144d9e3

View File

@@ -112,7 +112,7 @@ class AutoEconomy:
if server.id not in self.settings:
self.settings[server.id] = deepcopy(default_settings)
await self.save_settings()
if not self.settings[server.id]["TOGGLE"]:
if not (self.settings[server.id]["TOGGLE"] or mass_register):
return
channel = self.settings[server.id]["CHANNEL"]
channel_object = self.bot.get_channel(channel)