Change pearl necklace max damage to 16

This commit is contained in:
Sollace 2024-06-30 14:16:05 +01:00
parent 8bf6d53a48
commit 8caf619418
No known key found for this signature in database
GPG key ID: E52FACE7B5C773DB

View file

@ -220,7 +220,7 @@ public interface UItems {
.rarity(Rarity.UNCOMMON), 0), ItemGroups.TOOLS);
AmuletItem PEARL_NECKLACE = register("pearl_necklace", new AmuletItem(new FabricItemSettings()
.maxCount(1)
.maxDamage(4)
.maxDamage(16)
.rarity(Rarity.UNCOMMON), 0), ItemGroups.TOOLS);
GlassesItem SUNGLASSES = register("sunglasses", new GlassesItem(new FabricItemSettings().maxCount(1)), ItemGroups.COMBAT);