diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-21 18:43:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-21 18:43:26 +0300 |
commit | d8a7eaa14ef0fad24e19f6363db708a397f7f98b (patch) | |
tree | fdf3f32c4c300be74c3371bd47a60d84fdd70ff8 /src/actions/commands.cpp | |
parent | 529d5ac21229ba7678bba9832f69448898b159b9 (diff) | |
download | manaplus-d8a7eaa14ef0fad24e19f6363db708a397f7f98b.tar.gz manaplus-d8a7eaa14ef0fad24e19f6363db708a397f7f98b.tar.bz2 manaplus-d8a7eaa14ef0fad24e19f6363db708a397f7f98b.tar.xz manaplus-d8a7eaa14ef0fad24e19f6363db708a397f7f98b.zip |
Allow copy items from outfit into chat.
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r-- | src/actions/commands.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index 4f809411c..df86fefc2 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -1888,4 +1888,15 @@ impHandler(partyAutoItemShare) return true; } +impHandler0(outfitToChat) +{ + if (!outfitWindow || !chatWindow) + return false; + + const std::string str = outfitWindow->getOutfitString(); + if (!str.empty()) + chatWindow->addInputText(str); + return true; +} + } // namespace Actions |