Add small bit of gravity for Bubble trap

This commit is contained in:
TehRealSalt 2019-05-21 18:13:39 -04:00
parent 26065e9983
commit ea3d6227e4

View file

@ -9320,7 +9320,7 @@ void P_MobjThinker(mobj_t *mobj)
} }
else else
{ {
mobj->momz = 0; mobj->momz = -(FRACUNIT * P_MobjFlip(mobj));
mobj->destscale = (5*mapobjectscale)>>2; mobj->destscale = (5*mapobjectscale)>>2;
if (mobj->threshold > 0) if (mobj->threshold > 0)
mobj->threshold--; mobj->threshold--;