Remove Player 0

This commit is contained in:
James R 2020-02-01 18:22:03 -08:00
parent bf3b7fc5b0
commit d5ced42f06
1 changed files with 1 additions and 1 deletions

View File

@ -624,7 +624,7 @@ void D_RegisterClientCommands(void)
// Set default player names
// Monster Iestyn (12/08/19): not sure where else I could have actually put this, but oh well
for (i = 0; i < MAXPLAYERS; i++)
sprintf(player_names[i], "Player %d", i);
sprintf(player_names[i], "Player %d", 1 + i);
if (dedicated)
return;