From 637506306077e4df63c7aef30a37eb8ad27c06f4 Mon Sep 17 00:00:00 2001 From: Lorenz Date: Fri, 26 Aug 2022 21:49:21 +0200 Subject: fixing bug that wrong entities get counted as summoning mobs --- .../at/hannibal2/skyhanni/test/command/CopyNearbyEntitiesCommand.kt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/test/command') diff --git a/src/main/java/at/hannibal2/skyhanni/test/command/CopyNearbyEntitiesCommand.kt b/src/main/java/at/hannibal2/skyhanni/test/command/CopyNearbyEntitiesCommand.kt index 718c8adfc..291000c77 100644 --- a/src/main/java/at/hannibal2/skyhanni/test/command/CopyNearbyEntitiesCommand.kt +++ b/src/main/java/at/hannibal2/skyhanni/test/command/CopyNearbyEntitiesCommand.kt @@ -10,6 +10,7 @@ import at.hannibal2.skyhanni.utils.toLorenzVec import net.minecraft.client.Minecraft import net.minecraft.entity.EntityLivingBase import net.minecraft.entity.item.EntityArmorStand +import net.minecraft.entity.monster.EntityEnderman import net.minecraft.entity.monster.EntityMagmaCube object CopyNearbyEntitiesCommand { @@ -72,6 +73,10 @@ object CopyNearbyEntitiesCommand { } } + } else if (entity is EntityEnderman) { + val enderman = entity as EntityEnderman + val heldItem = enderman.heldItem + resultList.add("enderman heldItem: $heldItem") } else { if (entity is EntityLivingBase) { val baseMaxHealth = entity.baseMaxHealth -- cgit