summaryrefslogtreecommitdiff
path: root/src/commandhandler.cpp
diff options
context:
space:
mode:
authorChuck Miller <shadowmil@gmail.com>2009-05-08 23:16:54 -0400
committerChuck Miller <shadowmil@gmail.com>2009-05-08 23:16:54 -0400
commit8ed571f3129e676c284bb9a842791cd6e17fefd1 (patch)
tree646881ebdfa3619c7c2a2852e35f1498953578b7 /src/commandhandler.cpp
parentfd7edc85cee0714896c181d0ae17cca17a382b80 (diff)
downloadmana-client-8ed571f3129e676c284bb9a842791cd6e17fefd1.tar.gz
mana-client-8ed571f3129e676c284bb9a842791cd6e17fefd1.tar.bz2
mana-client-8ed571f3129e676c284bb9a842791cd6e17fefd1.tar.xz
mana-client-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.cpp2
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);
}