Slight buff to MT_LHRT.

This commit is contained in:
toaster 2019-06-20 23:43:05 +01:00
parent f182bb867f
commit f7fe418f7c
1 changed files with 2 additions and 2 deletions

View File

@ -7862,8 +7862,8 @@ void P_MobjThinker(mobj_t *mobj)
}
break;
case MT_LHRT:
mobj->momx = FixedMul(mobj->momx, (48*FRACUNIT)/50);
mobj->momy = FixedMul(mobj->momy, (48*FRACUNIT)/50);
mobj->momx = FixedMul(mobj->momx, (49*FRACUNIT)/50);
mobj->momy = FixedMul(mobj->momy, (49*FRACUNIT)/50);
break;
case MT_EGGCAPSULE:
if (!mobj->reactiontime)