diff options
| author | Aaron <51387595+AzureAaron@users.noreply.github.com> | 2025-06-22 20:13:24 -0400 |
|---|---|---|
| committer | Aaron <51387595+AzureAaron@users.noreply.github.com> | 2025-06-22 20:13:24 -0400 |
| commit | 78d56c8b1e97eda7d04be83d9a11879be414f81e (patch) | |
| tree | 56f305249b800fb93ada6c94ec0e004208774dc8 /src/main/java/de | |
| parent | 4db9b7d9d0c2bc3cc5cb876349710da16b6ba363 (diff) | |
| download | Skyblocker-78d56c8b1e97eda7d04be83d9a11879be414f81e.tar.gz Skyblocker-78d56c8b1e97eda7d04be83d9a11879be414f81e.tar.bz2 Skyblocker-78d56c8b1e97eda7d04be83d9a11879be414f81e.zip | |
Remove item attribute code
Diffstat (limited to 'src/main/java/de')
| -rw-r--r-- | src/main/java/de/hysky/skyblocker/utils/ItemUtils.java | 18 |
1 files changed, 0 insertions, 18 deletions
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"; |
