mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
P_SetupSignExit: Bail early if gametype has GTR_SPECIALSTART
This commit is contained in:
parent
e507a8b0ad
commit
ed8158c00c
1 changed files with 4 additions and 3 deletions
|
|
@ -4647,11 +4647,12 @@ void P_SetupSignExit(player_t *player, boolean tie)
|
|||
thinker_t *think;
|
||||
INT32 numfound = 0;
|
||||
|
||||
angle_t bestAngle = K_MomentumAngle(player->mo) + ANGLE_180;
|
||||
|
||||
if (player->position != 1)
|
||||
if (player->position != 1
|
||||
|| (gametyperules & GTR_SPECIALSTART))
|
||||
return;
|
||||
|
||||
angle_t bestAngle = K_MomentumAngle(player->mo) + ANGLE_180;
|
||||
|
||||
for (; node; node = node->m_thinglist_next)
|
||||
{
|
||||
thing = node->m_thing;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue