aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-26 14:48:47 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-26 14:48:47 +0200
commit8d3de642e7f89635ebe29480fb31e3255216a544 (patch)
tree34440dc04087d21bfd34857b0f8a1d0f3f8b58a2
parent99cc04f6e03862666ea9075fabd25fa3904459b8 (diff)
downloadskyhanni-8d3de642e7f89635ebe29480fb31e3255216a544.tar.gz
skyhanni-8d3de642e7f89635ebe29480fb31e3255216a544.tar.bz2
skyhanni-8d3de642e7f89635ebe29480fb31e3255216a544.zip
Fixed wrong Jacob/Anita npc get highlighted as visitor
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt51
1 files changed, 40 insertions, 11 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt
index 5ecdad087..ecb3c541d 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt
@@ -379,7 +379,9 @@ class GardenVisitorFeatures {
for ((visitorName, visitor) in visitors) {
val entity = visitor.getEntity()
if (entity == null) {
- findEntityByNametag(visitorName, visitor)
+ findNametag(visitorName.removeColor())?.let {
+ findEntity(it, visitor)
+ }
}
val status = visitor.status
@@ -405,18 +407,45 @@ class GardenVisitorFeatures {
private fun Visitor.getEntity() = Minecraft.getMinecraft().theWorld.getEntityByID(entityId)
- private fun findEntityByNametag(visitorName: String, visitor: Visitor) {
- Minecraft.getMinecraft().theWorld.loadedEntityList
- .filter { it is EntityArmorStand && it.name.removeColor() == visitorName.removeColor() }
- .forEach { entity ->
- Minecraft.getMinecraft().theWorld.loadedEntityList
- .filter { it !is EntityArmorStand }
- .filter { entity.getLorenzVec().distanceIgnoreY(it.getLorenzVec()) == 0.0 }
- .forEach {
- visitor.entityId = it?.entityId ?: 0
- visitor.nameTagEntityId = entity.entityId
+ private fun findEntity(nameTag: EntityArmorStand, visitor: Visitor) {
+ for (entity in Minecraft.getMinecraft().theWorld.loadedEntityList) {
+ if (entity is EntityArmorStand) continue
+ if (entity.getLorenzVec().distanceIgnoreY(nameTag.getLorenzVec()) != 0.0) continue
+
+ visitor.entityId = entity?.entityId ?: 0
+ visitor.nameTagEntityId = nameTag.entityId
+ }
+ }
+
+ private fun findNametag(visitorName: String): EntityArmorStand? {
+ val foundVisitorNameTags = mutableListOf<EntityArmorStand>()
+ for (entity in Minecraft.getMinecraft().theWorld.loadedEntityList) {
+ if (entity !is EntityArmorStand) continue
+
+ if (entity.name.removeColor() == visitorName) {
+ foundVisitorNameTags.add(entity)
+ }
+ }
+
+ if (visitorName in listOf("Jacob", "Anita")) {
+
+ // Only detect jacob/anita npc if the "wrong" npc got found as well
+ if (foundVisitorNameTags.size != 2) return null
+
+ for (tag in foundVisitorNameTags.toMutableList()) {
+ for (entity in Minecraft.getMinecraft().theWorld.loadedEntityList) {
+ if (entity !is EntityArmorStand) continue
+ if (entity in foundVisitorNameTags) continue
+ val distance = entity.getLorenzVec().distance(tag.getLorenzVec())
+ if (distance < 1.5 && entity.name == "§bSam") {
+ foundVisitorNameTags.remove(tag)
}
+ }
}
+ }
+
+ if (foundVisitorNameTags.size != 1) return null
+ return foundVisitorNameTags[0]
}
private fun isReady(visitor: Visitor): Boolean {