From 7e3efb9d1ced85234b7f2e2cf62709b0b6221d52 Mon Sep 17 00:00:00 2001 From: atom0s Date: Tue, 12 Sep 2017 00:41:52 -0700 Subject: [PATCH] Update 'gmcommand.lua' Adjusted to include DSP's new ! command usage. --- gmcommand.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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