Status: Fix Indents.

This commit is contained in:
zaCade 2019-02-28 18:31:01 +01:00
parent 2c23f72a50
commit e413f1b43c

View File

@ -98,10 +98,10 @@ public Action Command_Status(int client, const char[] command, int args)
sServerName);
#if defined _serverfps_included
PrintToConsole(client, "tickrate : %.2f/%.2f (%d%%)",
PrintToConsole(client, "tickrate: %.2f/%.2f (%d%%)",
fServerFPS, fServerTickRate, RoundToNearest((fServerFPS / fServerTickRate) * 100));
#else
PrintToConsole(client, "tickrate : %d/%d (%d%%)",
PrintToConsole(client, "tickrate: %d/%d (%d%%)",
iTickRate, iServerTickRate, RoundToNearest((float(iTickRate) / float(iServerTickRate)) * 100));
#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)",
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]);
PrintToConsole(client, "tags : %s",
PrintToConsole(client, "tags : %s",
sServerTags);
PrintToConsole(client, "edicts : %d/%d/%d (used/max/free)",
PrintToConsole(client, "edicts : %d/%d/%d (used/max/free)",
GetEntityCount(), GetMaxEntities(), GetMaxEntities() - GetEntityCount());
PrintToConsole(client, "players : %d %s | %d %s (%d/%d)",