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