mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 17:22:12 +00:00
Leaky Mario mode bug fixed.
This commit is contained in:
parent
5ff507213b
commit
76700241f6
1 changed files with 2 additions and 1 deletions
|
@ -2304,7 +2304,8 @@ void P_KillMobj(mobj_t *target, mobj_t *inflictor, mobj_t *source, UINT8 damaget
|
|||
target->fuse = TICRATE*3; // timer before mobj disappears from view (even if not an actual player)
|
||||
if (!mariodeathpit)
|
||||
{
|
||||
target->player->powers[pw_marioflashing] = MARIOFLASHINGTICS;
|
||||
if (mariomode)
|
||||
target->player->powers[pw_marioflashing] = MARIOFLASHINGTICS;
|
||||
target->momx = target->momy = target->momz = 0;
|
||||
}
|
||||
if (damagetype == DMG_DROWNED) // drowned
|
||||
|
|
Loading…
Reference in a new issue