diff --git a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py index 4a48231..867b00c 100644 --- a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py +++ b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py @@ -105,7 +105,9 @@ class Commands(): def get_command_from_trigger(self, trigger): commstring = trigger.args[1] + print(commstring) if commstring.startswith(tuple(self.config.prefix_list)): + print(commstring[:1]) command = commstring[1:].split(" ")[0] elif commstring.startswith(self.bot.nick): command = " ".join(commstring.split(" ")[1:]).split(" ")[0]