Special Stage is never Race Duel

This commit is contained in:
Antonio Martinez 2024-09-10 15:11:47 -07:00
parent fc56b1c802
commit 2a42d664f0

View file

@ -121,7 +121,7 @@ boolean K_DuelItemAlwaysSpawns(mapthing_t *mt)
boolean K_InRaceDuel(void)
{
return (inDuel && (gametyperules & GTR_CIRCUIT) && !(mapheaderinfo[gamemap-1]->levelflags & LF_SECTIONRACE));
return (inDuel && (gametyperules & GTR_CIRCUIT) && !(mapheaderinfo[gamemap-1]->levelflags & LF_SECTIONRACE)) && !specialstageinfo.valid;
}
player_t *K_DuelOpponent(player_t *player)