diff --git a/changelog.txt b/changelog.txt index 13d4059..66340bf 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +2009.01.17 - 2.5.1.23 + * Fixed teleport location text to display as float values instead of decimal. + 2009.01.16 - 2.5.1.22 * Changed hardcoded antistick force into a CVAR. diff --git a/src/zombiereloaded.sp b/src/zombiereloaded.sp index dc888c1..a115045 100644 --- a/src/zombiereloaded.sp +++ b/src/zombiereloaded.sp @@ -15,7 +15,7 @@ #undef REQUIRE_PLUGIN #include -#define VERSION "2.5.1.22" +#define VERSION "2.5.1.23" #include "zr/zombiereloaded" #include "zr/global" diff --git a/src/zr/teleport.inc b/src/zr/teleport.inc index ab89dd9..652e94c 100644 --- a/src/zr/teleport.inc +++ b/src/zr/teleport.inc @@ -209,7 +209,7 @@ public Action:Command_TeleSaveLocation(client, argc) GetClientAbsOrigin(target_client, bufferLoc[client]); bufferLocSaved[client] = true; GetClientName(target_client, target_name, sizeof(target_name)); - ReplyToCommand(client, "Saved location to %s (%d, %d, %d).", target_name, bufferLoc[client][0], bufferLoc[client][1], bufferLoc[client][2]); + ReplyToCommand(client, "Saved location to %s (x:%f, y:%f, z:%f).", target_name, bufferLoc[client][0], bufferLoc[client][1], bufferLoc[client][2]); } else {