diff options
Diffstat (limited to 'plugins/manaboy.py')
-rwxr-xr-x | plugins/manaboy.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/manaboy.py b/plugins/manaboy.py index f755512..7831974 100755 --- a/plugins/manaboy.py +++ b/plugins/manaboy.py @@ -810,8 +810,7 @@ def cmd_say(nick, message, is_whisper, match): if nick not in admins: return # ~ set_npc_owner(nick) - msg = message.group(1) - mapserv.cmsg_chat_message(msg) + mapserv.cmsg_chat_message(match.group(1)) def cmd_sit(nick, message, is_whisper, match): @@ -1155,7 +1154,8 @@ manaboy_commands = { '!use (\d+)' : cmd_item_action, '!emote (\d+)' : cmd_emote, '!attack (.+)' : cmd_attack, - '!say ((@|#).+)' : cmd_say, + # ~ '!say ((@|#).+)' : cmd_say, + '!say (.*)' : cmd_say, '!sit' : cmd_sit, '!turn' : cmd_turn, '!follow' : cmd_follow, |