Skip to content

Commit

Permalink
fix armor layers 10428
Browse files Browse the repository at this point in the history
  • Loading branch information
Raycoms committed Nov 11, 2024
1 parent 3401f63 commit 1576428
Showing 1 changed file with 15 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,9 @@ public static void init(final Registry<Item> registry)
500,
SoundEvents.ARMOR_EQUIP_LEATHER,
() -> Ingredient.EMPTY,
List.of(),
List.of(
new ArmorMaterial.Layer(ResourceLocation.fromNamespaceAndPath(Constants.MOD_ID,"santa_hat"), "", true)
),
0,
0
));
Expand All @@ -396,7 +398,9 @@ public static void init(final Registry<Item> registry)
37,
SoundEvents.ARMOR_EQUIP_IRON,
() -> Ingredient.of(Items.IRON_INGOT),
List.of(),
List.of(
new ArmorMaterial.Layer(ResourceLocation.fromNamespaceAndPath(Constants.MOD_ID,"plate_armor"), "", true)
),
0,
0
));
Expand All @@ -412,7 +416,9 @@ public static void init(final Registry<Item> registry)
20,
SoundEvents.ARMOR_EQUIP_LEATHER,
() -> Ingredient.EMPTY,
List.of(),
List.of(
new ArmorMaterial.Layer(ResourceLocation.fromNamespaceAndPath(Constants.MOD_ID,"build_goggles"), "", true)
),
0,
0
));
Expand All @@ -428,7 +434,9 @@ public static void init(final Registry<Item> registry)
5,
SoundEvents.ARMOR_EQUIP_LEATHER,
() -> Ingredient.of(Items.DIAMOND),
List.of(),
List.of(
new ArmorMaterial.Layer(ResourceLocation.fromNamespaceAndPath(Constants.MOD_ID,"pirate"), "", true)
),
0,
0
));
Expand All @@ -444,7 +452,9 @@ public static void init(final Registry<Item> registry)
5,
SoundEvents.ARMOR_EQUIP_LEATHER,
() -> Ingredient.of(Items.DIAMOND),
List.of(),
List.of(
new ArmorMaterial.Layer(ResourceLocation.fromNamespaceAndPath(Constants.MOD_ID, "pirate2"), "", true)
),
2,
0
));
Expand Down

0 comments on commit 1576428

Please sign in to comment.