mirror of
https://github.com/nzp-team/quakec.git
synced 2025-02-16 00:51:57 +00:00
CLIENT: build fix
This commit is contained in:
parent
69e0ec87b7
commit
3bf403655a
1 changed files with 2 additions and 2 deletions
|
@ -1119,9 +1119,9 @@ noref void() CSQC_Parse_Event =
|
|||
break;
|
||||
case EVENT_REVIVEON:
|
||||
float reviveon_player_index = readbyte() - 1; // playernum starts at one.
|
||||
if (reviveoff_player_index < 0)
|
||||
if (reviveon_player_index < 0)
|
||||
return;
|
||||
|
||||
|
||||
revive_icons[reviveon_player_index].state = 1;
|
||||
revive_icons[reviveon_player_index].draw = true;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue