diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-25 17:43:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-25 17:48:01 +0300 |
commit | c1c666d37d924f4ef9c544b7ce25fc3ef7b6dd15 (patch) | |
tree | bf2b183127384c9b0b77719c1176db51f917f6f4 /src/actions/commands.cpp | |
parent | f2a2fe38f1185cbe6acb978b37190aaae76f1b62 (diff) | |
download | plus-c1c666d37d924f4ef9c544b7ce25fc3ef7b6dd15.tar.gz plus-c1c666d37d924f4ef9c544b7ce25fc3ef7b6dd15.tar.bz2 plus-c1c666d37d924f4ef9c544b7ce25fc3ef7b6dd15.tar.xz plus-c1c666d37d924f4ef9c544b7ce25fc3ef7b6dd15.zip |
Replace direct gm commands to gm command functions.
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r-- | src/actions/commands.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index cdb1fa69c..ebb472130 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -69,6 +69,7 @@ #include "utils/chatutils.h" #include "utils/gettext.h" +#include "utils/gmfunctions.h" #include "utils/process.h" #include "debug.h" @@ -805,7 +806,7 @@ impHandler(gm) { if (chatHandler) { - chatHandler->talk("@wgm " + event.args, GENERAL_CHANNEL); + Gm::runCommand("wgm", event.args); return true; } return false; |