diff options
Diffstat (limited to 'src/actions/chat.cpp')
-rw-r--r-- | src/actions/chat.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/actions/chat.cpp b/src/actions/chat.cpp index 8c5a8ebb4..f6135c674 100644 --- a/src/actions/chat.cpp +++ b/src/actions/chat.cpp @@ -450,4 +450,11 @@ impHandler(kickParty) return true; } +impHandler(addText) +{ + if (chatWindow) + chatWindow->addInputText(event.args); + return true; +} + } // namespace Actions |