Fixed teleport location text to display float values instead of decimal values.
This commit is contained in:
parent
72cb683278
commit
e3f4b4e400
|
@ -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.
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#undef REQUIRE_PLUGIN
|
||||
#include <market>
|
||||
|
||||
#define VERSION "2.5.1.22"
|
||||
#define VERSION "2.5.1.23"
|
||||
|
||||
#include "zr/zombiereloaded"
|
||||
#include "zr/global"
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user