Skip to content
Snippets Groups Projects
Commit eab2900a authored by AJ Martinez's avatar AJ Martinez
Browse files

Increase shrink contact leniency

parent c36c682b
No related branches found
No related tags found
No related merge requests found
...@@ -606,9 +606,11 @@ boolean Obj_ShrinkLaserCollide(mobj_t *gun, mobj_t *victim) ...@@ -606,9 +606,11 @@ boolean Obj_ShrinkLaserCollide(mobj_t *gun, mobj_t *victim)
else else
{ {
// Bullshit contact. Let 'em off for free. // Bullshit contact. Let 'em off for free.
if (scale < FRACUNIT/4) if (scale < FRACUNIT/3)
return true; return true;
scale = Easing_InSine(scale, 0, FRACUNIT);
if (prevTimer > 0) if (prevTimer > 0)
{ {
// Dock some Grow time. // Dock some Grow time.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment