From 5ac52fa8c9dd58b7edcf80308f8233cbca6e64b3 Mon Sep 17 00:00:00 2001 From: KohaiKhaos Date: Sun, 22 Jul 2018 08:54:46 -0500 Subject: [PATCH] Mob Sacrifice Array no longer kills bosses or players (#1371) This is solving the issue I raised in https://github.com/WayofTime/BloodMagic/issues/1368 Added a single check to line 123 of src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectMobSacrifice.java. The check makes sure the effective health of the currently targeted entity is above 0. So bosses and players are no longer set to -1 health when the array finishes crafting. --- .../alchemyArray/AlchemyArrayEffectMobSacrifice.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectMobSacrifice.java b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectMobSacrifice.java index 6ed8fbcf..77224e58 100644 --- a/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectMobSacrifice.java +++ b/src/main/java/WayofTime/bloodmagic/alchemyArray/AlchemyArrayEffectMobSacrifice.java @@ -120,7 +120,7 @@ public class AlchemyArrayEffectMobSacrifice extends AlchemyArrayEffect for (EntityLivingBase living : livingEntities) { double health = getEffectiveHealth(living); - if (healthAvailable > 0) + if (healthAvailable > 0 && health > 0) { healthAvailable -= health; living.getEntityWorld().playSound(null, living.posX, living.posY, living.posZ, SoundEvents.BLOCK_FIRE_EXTINGUISH, SoundCategory.BLOCKS, 0.5F, 2.6F + (living.getEntityWorld().rand.nextFloat() - living.getEntityWorld().rand.nextFloat()) * 0.8F); @@ -230,4 +230,4 @@ public class AlchemyArrayEffectMobSacrifice extends AlchemyArrayEffect { return new AlchemyArrayEffectMobSacrifice(key); } -} \ No newline at end of file +}