From 115144d9e3250161c2f536142ed1299e31ca66c7 Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 30 Jan 2018 18:08:04 -0500 Subject: [PATCH] massregister is an explicit command, should reflect that in handling of the toggle --- autoeconomy/autoeconomy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoeconomy/autoeconomy.py b/autoeconomy/autoeconomy.py index a267315..abcd438 100644 --- a/autoeconomy/autoeconomy.py +++ b/autoeconomy/autoeconomy.py @@ -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)