From 82152f79a1be37c117392c598d8a6fe3d0813911 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sat, 12 Feb 2022 13:46:59 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Core_1/SBCore/commands/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py index 074cc8a..68bc3dd 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, "/me", trigger_dict["trigger_str"]) ) - pretrigger.tags['intent'] = "ACTION" + # pretrigger.tags['intent'] = "ACTION" bot.dispatch(pretrigger)