diff options
author | Chuck Miller <shadowmil@gmail.com> | 2009-05-08 23:16:54 -0400 |
---|---|---|
committer | Chuck Miller <shadowmil@gmail.com> | 2009-05-08 23:16:54 -0400 |
commit | 8ed571f3129e676c284bb9a842791cd6e17fefd1 (patch) | |
tree | 646881ebdfa3619c7c2a2852e35f1498953578b7 /src/commandhandler.cpp | |
parent | fd7edc85cee0714896c181d0ae17cca17a382b80 (diff) | |
download | mana-8ed571f3129e676c284bb9a842791cd6e17fefd1.tar.gz mana-8ed571f3129e676c284bb9a842791cd6e17fefd1.tar.bz2 mana-8ed571f3129e676c284bb9a842791cd6e17fefd1.tar.xz mana-8ed571f3129e676c284bb9a842791cd6e17fefd1.zip |
Add a ", " between the coords returned by /where, to make it readible
Diffstat (limited to 'src/commandhandler.cpp')
-rw-r--r-- | src/commandhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commandhandler.cpp b/src/commandhandler.cpp index d834e0a3..91c65f83 100644 --- a/src/commandhandler.cpp +++ b/src/commandhandler.cpp @@ -278,7 +278,7 @@ void CommandHandler::handleWhere(const std::string &args, ChatTab *tab) { std::ostringstream where; where << map_path << ", coordinates: " - << (player_node->getPixelX() / 32) + << (player_node->getPixelX() / 32) << ", " << (player_node->getPixelY() / 32); tab->chatLog(where.str(), BY_SERVER); } |