mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Fix wrong flag being checked in P_ProcessTeamBase
This commit is contained in:
parent
707860815b
commit
bb9e7045c5
1 changed files with 1 additions and 1 deletions
|
@ -4653,7 +4653,7 @@ static void P_ProcessTeamBase(player_t *player, boolean redteam)
|
|||
|
||||
// Make sure the team still has their own
|
||||
// flag at their base so they can score.
|
||||
if (!P_IsFlagAtBase(redteam ? MT_BLUEFLAG : MT_REDFLAG))
|
||||
if (!P_IsFlagAtBase(redteam ? MT_REDFLAG : MT_BLUEFLAG))
|
||||
return;
|
||||
|
||||
HU_SetCEchoFlags(V_AUTOFADEOUT|V_ALLOWLOWERCASE);
|
||||
|
|
Loading…
Reference in a new issue