Merge branch 'lesser-shrink' into 'master'

Increase shrink contact leniency

See merge request KartKrew/Kart!2403
This commit is contained in:
Oni 2024-05-21 04:09:23 +00:00
commit f4148a3281

View file

@ -606,9 +606,11 @@ boolean Obj_ShrinkLaserCollide(mobj_t *gun, mobj_t *victim)
else
{
// Bullshit contact. Let 'em off for free.
if (scale < FRACUNIT/4)
if (scale < FRACUNIT/3)
return true;
scale = Easing_InSine(scale, 0, FRACUNIT);
if (prevTimer > 0)
{
// Dock some Grow time.