diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-23 20:34:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-23 20:34:25 +0300 |
commit | 051b5fc10eaec4f4aec1de8e79f2feae60f0e084 (patch) | |
tree | 16d14e76fa3654b99646fcf95bd91252429a05e8 /src/commands.cpp | |
parent | 0bda5a9018bb8a8b0511e86d6b0790a5b5127e42 (diff) | |
download | manaplus-051b5fc10eaec4f4aec1de8e79f2feae60f0e084.tar.gz manaplus-051b5fc10eaec4f4aec1de8e79f2feae60f0e084.tar.bz2 manaplus-051b5fc10eaec4f4aec1de8e79f2feae60f0e084.tar.xz manaplus-051b5fc10eaec4f4aec1de8e79f2feae60f0e084.zip |
Move chat command /where into actions.
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 1d273c90a..6a1094b51 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -251,16 +251,6 @@ static void outStringNormal(ChatTab *const tab, } } -impHandler(where) -{ - std::ostringstream where; - where << Game::instance()->getCurrentMapName() << ", coordinates: " - << ((localPlayer->getPixelX() - mapTileSize / 2) / mapTileSize) - << ", " << ((localPlayer->getPixelY() - mapTileSize) / mapTileSize); - event.tab->chatLog(where.str(), ChatMsgType::BY_SERVER); - return true; -} - impHandler0(who) { Net::getChatHandler()->who(); |