mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-22 04:21:23 +00:00
fixed call to P_SetScale() within A_MinusDigging() that I missed
This commit is contained in:
parent
52f53f03b7
commit
a73f9476f3
1 changed files with 1 additions and 1 deletions
|
@ -5816,7 +5816,7 @@ void A_MinusDigging(mobj_t *actor)
|
|||
P_SetMobjState(par, actor->info->raisestate);
|
||||
if (P_MobjWasRemoved(par))
|
||||
return;
|
||||
P_SetScale(par, actor->scale*2);
|
||||
P_SetScale(par, actor->scale*2, false);
|
||||
par->old_scale = par->scale;
|
||||
if (actor->eflags & MFE_VERTICALFLIP)
|
||||
par->eflags |= MFE_VERTICALFLIP;
|
||||
|
|
Loading…
Reference in a new issue