diff options
Diffstat (limited to 'src/actions/chat.cpp')
-rw-r--r-- | src/actions/chat.cpp | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/actions/chat.cpp b/src/actions/chat.cpp index add653cb0..3bf231d7c 100644 --- a/src/actions/chat.cpp +++ b/src/actions/chat.cpp @@ -30,6 +30,8 @@ #include "gui/windows/chatwindow.h" +#include "listeners/inputactionreplaylistener.h" + #include "net/charserverhandler.h" #include "net/chathandler.h" #include "net/guildhandler.h" @@ -336,9 +338,10 @@ impHandler(createParty) if (event.args.empty()) { - // TRANSLATORS: create party message - event.tab->chatLog(_("Party name is missing."), - ChatMsgType::BY_SERVER); + // TRANSLATORS: dialog header + inputActionReplayListener.openDialog(_("Create party"), + "", + InputAction::CREATE_PARTY); } else { @@ -359,9 +362,10 @@ impHandler(createGuild) if (event.args.empty()) { - // TRANSLATORS: create guild message - event.tab->chatLog(_("Guild name is missing."), - ChatMsgType::BY_SERVER); + // TRANSLATORS: dialog header + inputActionReplayListener.openDialog(_("Create guild"), + "", + InputAction::CREATE_GUILD); } else { |