diff options
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r-- | src/actions/commands.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index 63939c1da..e0514f902 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -71,6 +71,7 @@ #include "gui/widgets/tabs/whispertab.h" #include "net/adminhandler.h" +#include "net/chathandler.h" #include "net/guildhandler.h" #include "net/pethandler.h" #include "net/net.h" @@ -656,4 +657,10 @@ impHandler(testParticle) return false; } +impHandler(talkRaw) +{ + Net::getChatHandler()->talkRaw(event.args); + return true; +} + } // namespace Actions |