From 78d56c8b1e97eda7d04be83d9a11879be414f81e Mon Sep 17 00:00:00 2001 From: Aaron <51387595+AzureAaron@users.noreply.github.com> Date: Sun, 22 Jun 2025 20:13:24 -0400 Subject: Remove item attribute code --- src/main/java/de/hysky/skyblocker/utils/ItemUtils.java | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'src/main/java/de') diff --git a/src/main/java/de/hysky/skyblocker/utils/ItemUtils.java b/src/main/java/de/hysky/skyblocker/utils/ItemUtils.java index f977dd9c..a27ed97a 100644 --- a/src/main/java/de/hysky/skyblocker/utils/ItemUtils.java +++ b/src/main/java/de/hysky/skyblocker/utils/ItemUtils.java @@ -200,24 +200,6 @@ public final class ItemUtils { case "PARTY_HAT_SLOTH" -> { return id + "_" + customData.getString("party_hat_emoji", "").toUpperCase(Locale.ENGLISH); } - case "CRIMSON_HELMET", "CRIMSON_CHESTPLATE", "CRIMSON_LEGGINGS", "CRIMSON_BOOTS" -> { - NbtCompound attributes = customData.getCompoundOrEmpty("attributes"); - if (attributes.contains("magic_find") && attributes.contains("veteran")) { - return id + "-MAGIC_FIND-VETERAN"; - } - } - case "AURORA_HELMET", "AURORA_CHESTPLATE", "AURORA_LEGGINGS", "AURORA_BOOTS" -> { - NbtCompound attributes = customData.getCompoundOrEmpty("attributes"); - if (attributes.contains("mana_pool") && attributes.contains("mana_regeneration")) { - return id + "-MANA_POOL-MANA_REGENERATION"; - } - } - case "TERROR_HELMET", "TERROR_CHESTPLATE", "TERROR_LEGGINGS", "TERROR_BOOTS" -> { - NbtCompound attributes = customData.getCompoundOrEmpty("attributes"); - if (attributes.contains("lifeline") && attributes.contains("mana_pool")) { - return id + "-LIFELINE-MANA_POOL"; - } - } case "MIDAS_SWORD" -> { if (customData.getInt("winning_bid", 0) >= 50000000) { return id + "_50M"; -- cgit