mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-25 13:51:43 +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);
|
P_SetMobjState(par, actor->info->raisestate);
|
||||||
if (P_MobjWasRemoved(par))
|
if (P_MobjWasRemoved(par))
|
||||||
return;
|
return;
|
||||||
P_SetScale(par, actor->scale*2);
|
P_SetScale(par, actor->scale*2, false);
|
||||||
par->old_scale = par->scale;
|
par->old_scale = par->scale;
|
||||||
if (actor->eflags & MFE_VERTICALFLIP)
|
if (actor->eflags & MFE_VERTICALFLIP)
|
||||||
par->eflags |= MFE_VERTICALFLIP;
|
par->eflags |= MFE_VERTICALFLIP;
|
||||||
|
|
Loading…
Reference in a new issue