"whereami()" function: Print coordinates as integers.
authorFlorian Forster <supertux@octo.it>
Sun, 7 Mar 2010 10:00:25 +0000 (10:00 +0000)
committerFlorian Forster <supertux@octo.it>
Sun, 7 Mar 2010 10:00:25 +0000 (10:00 +0000)
The floating point part of the coordinates are distracting and not relevant.

SVN-Revision: 6568

src/scripting/functions.cpp

index 24b6b33..5a03f37 100644 (file)
@@ -252,7 +252,7 @@ void whereami()
 {
   if (!validate_sector_player()) return;
   ::Player* tux = Sector::current()->player;
-  log_info << "You are at x " << tux->get_pos().x << ", y " << tux->get_pos().y << std::endl;
+  log_info << "You are at x " << ((int) tux->get_pos().x) << ", y " << ((int) tux->get_pos().y) << std::endl;
 }
 
 void gotoend()