diff options
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r-- | src/actions/commands.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index b90a801d1..d2155d54b 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -22,7 +22,6 @@ #include "actormanager.h" #include "configuration.h" -#include "flooritem.h" #include "game.h" #include "inventory.h" #include "item.h" @@ -494,11 +493,18 @@ impHandler(imitation) return false; if (!event.args.empty()) + { localPlayer->setImitate(event.args); + } else if (event.tab && event.tab->getType() == ChatTabType::WHISPER) - localPlayer->setImitate(static_cast<WhisperTab*>(event.tab)->getNick()); + { + localPlayer->setImitate(static_cast<WhisperTab*>( + event.tab)->getNick()); + } else + { localPlayer->setImitate(""); + } return true; } |