diff --git a/src/main/kotlin/gg/skytils/skytilsmod/core/Config.kt b/src/main/kotlin/gg/skytils/skytilsmod/core/Config.kt index e40e81ba8..2ff918878 100644 --- a/src/main/kotlin/gg/skytils/skytilsmod/core/Config.kt +++ b/src/main/kotlin/gg/skytils/skytilsmod/core/Config.kt @@ -1067,13 +1067,6 @@ object Config : Vigilant( ) var trackGaiaHits = false - /* @Property( - type = PropertyType.SWITCH, name = "Hide Leftover Bleeds", - description = "Removes the bleeds text left behind when a player dies to a Minotaur.", - category = "Events", subcategory = "Mythological" - )*/ - var removeLeftOverBleeds = false - @Property( type = PropertyType.SWITCH, name = "Track Mythological Creatures", description = "Tracks and saves drops from Mythological Creatures.", diff --git a/src/main/kotlin/gg/skytils/skytilsmod/features/impl/events/MayorDiana.kt b/src/main/kotlin/gg/skytils/skytilsmod/features/impl/events/MayorDiana.kt index 575fa9f03..355a0f3af 100644 --- a/src/main/kotlin/gg/skytils/skytilsmod/features/impl/events/MayorDiana.kt +++ b/src/main/kotlin/gg/skytils/skytilsmod/features/impl/events/MayorDiana.kt @@ -57,26 +57,6 @@ object MayorDiana { } } - @SubscribeEvent - fun onCheckRender(event: CheckRenderEntityEvent<*>) { - if (!Utils.inSkyblock) return - val entity = event.entity - if (Skytils.config.removeLeftOverBleeds && mc.theWorld != null && entity is EntityArmorStand && entity.hasCustomName() && entity.displayName.formattedText.startsWith( - "§c☣ §fBleeds: §c" - ) && entity.ticksExisted >= 20 - ) { - val aabb = entity.entityBoundingBox.expand(2.0, 5.0, 2.0) - if (mc.theWorld.loadedEntityList.none { - it.displayName.formattedText.endsWith("§c❤") && it.displayName.formattedText.contains( - "Minotaur §" - ) && it.entityBoundingBox.intersectsWith(aabb) - }) { - event.isCanceled = true - mc.theWorld.removeEntity(entity) - } - } - } - @SubscribeEvent fun onPostRenderEntity(event: RenderLivingEvent.Post<*>) { if (!Utils.inSkyblock) return