mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-22 02:42:20 +00:00
Merge branch 'fix-time-old-special-softlock' into 'next'
Fix softlock on old special stages when running out of time due to being hit See merge request STJr/SRB2!2398
This commit is contained in:
commit
7aa8477443
1 changed files with 1 additions and 1 deletions
|
@ -3640,7 +3640,7 @@ void P_SpecialStageDamage(player_t *player, mobj_t *inflictor, mobj_t *source)
|
|||
if (player->nightstime > 5*TICRATE)
|
||||
player->nightstime -= 5*TICRATE;
|
||||
else
|
||||
player->nightstime = 0;
|
||||
player->nightstime = 1;
|
||||
}
|
||||
|
||||
P_DoPlayerPain(player, inflictor, source);
|
||||
|
|
Loading…
Reference in a new issue