From b601dc5deb40b19e989203fe86d6f5ab173d7aeb Mon Sep 17 00:00:00 2001 From: Anuken Date: Tue, 22 Sep 2020 23:25:44 -0400 Subject: [PATCH] Fixed fuse length being less than expected --- core/src/mindustry/entities/Damage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/entities/Damage.java b/core/src/mindustry/entities/Damage.java index 44ea787658..f3e41db408 100644 --- a/core/src/mindustry/entities/Damage.java +++ b/core/src/mindustry/entities/Damage.java @@ -94,7 +94,7 @@ public class Damage{ collideLine(b, b.team, b.type.hitEffect, b.x, b.y, b.rotation(), resultLength, large); - b.fdata = furthest != null ? resultLength : length; + b.fdata = resultLength; return resultLength; }