fixed call to P_SetScale() within A_MinusDigging() that I missed

This commit is contained in:
Logan Aerl Arias 2024-02-24 23:57:09 -05:00
parent 52f53f03b7
commit a73f9476f3

View file

@ -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;