diff --git a/gmcommand.lua b/gmcommand.lua index 37f20be..f29d848 100644 --- a/gmcommand.lua +++ b/gmcommand.lua @@ -35,7 +35,7 @@ require 'common' ---------------------------------------------------------------------------------------------------- ashita.register_event('command', function(command, ntype) -- Look for commands starting with @ - if (command:startswith('@')) then + if (command:startswith('@') or command:startswith('!')) then AshitaCore:GetChatManager():QueueCommand('$' .. command:remove(1), 1); return true; end