Status: Fix Indents.
This commit is contained in:
parent
2c23f72a50
commit
e413f1b43c
@ -98,10 +98,10 @@ public Action Command_Status(int client, const char[] command, int args)
|
|||||||
sServerName);
|
sServerName);
|
||||||
|
|
||||||
#if defined _serverfps_included
|
#if defined _serverfps_included
|
||||||
PrintToConsole(client, "tickrate : %.2f/%.2f (%d%%)",
|
PrintToConsole(client, "tickrate: %.2f/%.2f (%d%%)",
|
||||||
fServerFPS, fServerTickRate, RoundToNearest((fServerFPS / fServerTickRate) * 100));
|
fServerFPS, fServerTickRate, RoundToNearest((fServerFPS / fServerTickRate) * 100));
|
||||||
#else
|
#else
|
||||||
PrintToConsole(client, "tickrate : %d/%d (%d%%)",
|
PrintToConsole(client, "tickrate: %d/%d (%d%%)",
|
||||||
iTickRate, iServerTickRate, RoundToNearest((float(iTickRate) / float(iServerTickRate)) * 100));
|
iTickRate, iServerTickRate, RoundToNearest((float(iTickRate) / float(iServerTickRate)) * 100));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -111,13 +111,13 @@ public Action Command_Status(int client, const char[] command, int args)
|
|||||||
PrintToConsole(client, "net I/O : %.2f/%.2f KiB/s (You: %.2f/%.2f KiB/s)",
|
PrintToConsole(client, "net I/O : %.2f/%.2f KiB/s (You: %.2f/%.2f KiB/s)",
|
||||||
fServerDataIn / 1024, fServerDataOut / 1024, fClientDataIn / 1024, fClientDataOut / 1024);
|
fServerDataIn / 1024, fServerDataOut / 1024, fClientDataIn / 1024, fClientDataOut / 1024);
|
||||||
|
|
||||||
PrintToConsole(client, "map : %s at: %.0f x, %.0f y, %.0f z",
|
PrintToConsole(client, "map : %s at: %.0f x, %.0f y, %.0f z",
|
||||||
sMapName, fPosition[0], fPosition[1], fPosition[2]);
|
sMapName, fPosition[0], fPosition[1], fPosition[2]);
|
||||||
|
|
||||||
PrintToConsole(client, "tags : %s",
|
PrintToConsole(client, "tags : %s",
|
||||||
sServerTags);
|
sServerTags);
|
||||||
|
|
||||||
PrintToConsole(client, "edicts : %d/%d/%d (used/max/free)",
|
PrintToConsole(client, "edicts : %d/%d/%d (used/max/free)",
|
||||||
GetEntityCount(), GetMaxEntities(), GetMaxEntities() - GetEntityCount());
|
GetEntityCount(), GetMaxEntities(), GetMaxEntities() - GetEntityCount());
|
||||||
|
|
||||||
PrintToConsole(client, "players : %d %s | %d %s (%d/%d)",
|
PrintToConsole(client, "players : %d %s | %d %s (%d/%d)",
|
||||||
|
Loading…
Reference in New Issue
Block a user