mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-27 05:21:57 +00:00
Fix issue where player cannot destroy the NiGHTS Capsule if they have not transformed to NiGHTS
This commit is contained in:
parent
effd0ebe97
commit
d321ec83e1
1 changed files with 2 additions and 2 deletions
|
|
@ -958,8 +958,8 @@ void P_TouchSpecialThing(mobj_t *special, mobj_t *toucher, boolean heightcheck)
|
|||
if (player->powers[pw_carry] == CR_NIGHTSMODE && !toucher->target)
|
||||
return;
|
||||
|
||||
if (toucher->tracer)
|
||||
return; // Don't have multiple ideya
|
||||
if (toucher->tracer && toucher->tracer->state-states > S_ORBIDYA1)
|
||||
return; // Don't have multiple ideya, unless it's the first one given
|
||||
|
||||
if (player->mare != special->threshold) // wrong mare
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue