Fix Shrink not receiving stumble

This commit is contained in:
Sally Coolatta 2022-09-24 19:51:41 -04:00
parent ee7125ffdf
commit a9634dde2f

View file

@ -3943,7 +3943,7 @@ boolean K_IsBigger(mobj_t *compare, mobj_t *other)
return false;
}
return (compare->scale > other->scale + (mapobjectscale/2));
return (compare->scale > other->scale + (mapobjectscale / 4));
}
static fixed_t K_TumbleZ(mobj_t *mo, fixed_t input)