From 7722d697c67e14e34b2933010deb89bc2cbe6812 Mon Sep 17 00:00:00 2001 From: genNAowl <68400583+genNAowl@users.noreply.github.com> Date: Mon, 5 Oct 2020 13:10:52 -0700 Subject: [PATCH] Update core/src/mindustry/entities/bullet/BulletType.java Co-authored-by: Anuken --- core/src/mindustry/entities/bullet/BulletType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/entities/bullet/BulletType.java b/core/src/mindustry/entities/bullet/BulletType.java index 008be4523c..36f9f919f8 100644 --- a/core/src/mindustry/entities/bullet/BulletType.java +++ b/core/src/mindustry/entities/bullet/BulletType.java @@ -194,7 +194,7 @@ public abstract class BulletType extends Content{ Damage.status(b.team, x, y, splashDamageRadius, status, statusDuration, collidesAir, collidesGround); } - if(healPercent >= 0f) { + if(healPercent > 0f) { indexer.eachBlock(b.team, x, y, splashDamageRadius, other -> other.damaged(), other -> { Fx.healBlockFull.at(other.x, other.y, other.block.size, Pal.heal); other.heal(healPercent / 100f * other.maxHealth());