mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Special Stage is never Race Duel
This commit is contained in:
parent
fc56b1c802
commit
2a42d664f0
1 changed files with 1 additions and 1 deletions
|
|
@ -121,7 +121,7 @@ boolean K_DuelItemAlwaysSpawns(mapthing_t *mt)
|
||||||
|
|
||||||
boolean K_InRaceDuel(void)
|
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)
|
player_t *K_DuelOpponent(player_t *player)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue