mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-24 19:52:08 +00:00
Merge branch 'flagfix' into 'next'
Fix wrong flag being checked in P_ProcessTeamBase Closes #957 See merge request STJr/SRB2!1938
This commit is contained in:
commit
20bfa8d96c
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