summaryrefslogtreecommitdiff
path: root/src/commandhandler.cpp
diff options
context:
space:
mode:
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);
}