From 1fee25883aabc926417a6b764309fb35aff076c4 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sat, 12 Feb 2022 14:08:48 -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 a3651ed..4e53d11 100644 --- a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py +++ b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py @@ -45,7 +45,7 @@ class Commands(): def dispatch_action_command(self, bot, trigger, trigger_dict): pretrigger = PreTrigger( bot.nick, - ":%s %s %s :%s %s" % (trigger.hostmask, "PRIVMSG", trigger.sender, "ACTION", trigger_dict["trigger_str"]) + ":%s %s %s :%s %s" % (trigger.hostmask, "PRIVMSG", trigger.sender, "", trigger_dict["trigger_str"]) ) pretrigger.tags["intent"] = "ACTION" bot.dispatch(pretrigger)