mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix Rideroids grabbing you out of lightsnake
This commit is contained in:
parent
a10d18afdc
commit
3610fb88e8
1 changed files with 1 additions and 1 deletions
|
|
@ -540,7 +540,7 @@ void Obj_RideroidNodeThink(mobj_t *mo)
|
|||
// check for players coming near us.
|
||||
for (i = 0; i < MAXPLAYERS; i++)
|
||||
{
|
||||
if (!playeringame[i] || players[i].spectator || players[i].rideroid ||
|
||||
if (!playeringame[i] || players[i].spectator || players[i].rideroid || players[i].respawn.state != RESPAWNST_NONE ||
|
||||
players[i].rdnodepull || K_isPlayerInSpecialState(&players[i]) || P_PlayerInPain(&players[i]))
|
||||
continue;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue