From 8396db1ebcf0e13fc5b7e7b7927e6e6692dd2495 Mon Sep 17 00:00:00 2001 From: bconlon Date: Tue, 23 Feb 2021 16:37:58 -0800 Subject: [PATCH] Aechor plants no longer disappear when attacked with a gravitite sword. --- .../the_aether/entities/hostile/EntityAechorPlant.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/gildedgames/the_aether/entities/hostile/EntityAechorPlant.java b/src/main/java/com/gildedgames/the_aether/entities/hostile/EntityAechorPlant.java index 21f8da7..6691ae5 100644 --- a/src/main/java/com/gildedgames/the_aether/entities/hostile/EntityAechorPlant.java +++ b/src/main/java/com/gildedgames/the_aether/entities/hostile/EntityAechorPlant.java @@ -100,7 +100,7 @@ public class EntityAechorPlant extends EntityAetherAnimal { } if (this.worldObj.getBlock(MathHelper.floor_double(this.posX), MathHelper.floor_double(this.posY) - 1, MathHelper.floor_double(this.posZ)) != BlocksAether.aether_grass) { - this.setDead(); + this.setHealth(0.0F); } }