From b0f36832d3db73319e1b87e0b1d54973c1b664d5 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Thu, 24 Feb 2022 10:41:41 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Core_1/SBCore/commands/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py index 986a3bb..9a90352 100644 --- a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py +++ b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py @@ -271,7 +271,7 @@ class Commands(): trigger_str = " ".join([x.strip() for x in trigger_noprefix.split(" ")[1:]]) else: trigger_command = full_trigger_str.split(" ")[0] - trigger_str = " ".join([x.strip() for x in trigger_noprefix.split(" ")[1:]]) + trigger_str = " ".join([x.strip() for x in full_trigger_str.split(" ")[1:]]) command_types = ["command", "nickname_command", "action_command"] # Assume same command type until proven otherwise