Bubble/Guard: reflect strength 4x -> 6x

This commit is contained in:
James R 2024-01-13 17:43:48 -08:00
parent 9e650fa6c0
commit f8f2c51a8d

View file

@ -782,9 +782,9 @@ boolean K_BubbleShieldCollide(mobj_t *t1, mobj_t *t2)
} }
else else
{ {
t2->momx = -4*t2->momx; t2->momx = -6*t2->momx;
t2->momy = -4*t2->momy; t2->momy = -6*t2->momy;
t2->momz = -4*t2->momz; t2->momz = -6*t2->momz;
t2->angle += ANGLE_180; t2->angle += ANGLE_180;
} }
if (t2->type == MT_JAWZ) if (t2->type == MT_JAWZ)