Say "players" instead of "nodes"

This commit is contained in:
LJ Sonic 2024-09-06 16:17:15 +02:00
parent c09ec5933d
commit 46309370f0

View file

@ -1462,9 +1462,9 @@ static void DedicatedIdleUpdate(INT32 *realtics)
{ {
const char *idlereason = "at round start"; const char *idlereason = "at round start";
if (leveltime > 3) if (leveltime > 3)
idlereason = va("for %d seconds", dedicatedidle/TICRATE); idlereason = va("for %d seconds", dedicatedidle / TICRATE);
CONS_Printf("DEDICATED: No nodes %s, idling...\n", idlereason); CONS_Printf("DEDICATED: No players %s, idling...\n", idlereason);
(*realtics) = 0; (*realtics) = 0;
dedicatedidle = dedicatedidletime; dedicatedidle = dedicatedidletime;
} }