mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'lesser-shrink' into 'master'
Increase shrink contact leniency See merge request KartKrew/Kart!2403
This commit is contained in:
commit
f4148a3281
1 changed files with 3 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue