Skip to content

Commit 5bad7d4

Browse files
committed
Add missing Copper Horse Armor item
1 parent ad79522 commit 5bad7d4

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

includes.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
--include-constant MC_1_21_3
102102
--include-constant MC_1_21_4
103103
--include-constant MC_1_21_5
104+
--include-constant MC_1_21_6
104105
--include-constant MC_1_21_9
105106
--include-constant MC_1_21_WD
106107
--include-constant MC_1_2_5
@@ -684,6 +685,7 @@
684685
--include-constant ITEM_COOKED_COD
685686
--include-constant ITEM_COOKED_PORKCHOP
686687
--include-constant ITEM_COOKED_SALMON
688+
--include-constant ITEM_COPPER_HORSE_ARMOR
687689
--include-constant ITEM_CROSSBOW
688690
--include-constant ITEM_CRYING_OBSIDIAN
689691
--include-constant ITEM_DARK_OAK_LOG

src/main/java/dev/xpple/seedmapper/command/arguments/ItemAndEnchantmentsPredicateArgument.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public class ItemAndEnchantmentsPredicateArgument implements ArgumentType<ItemAn
5656
.put("cooked_cod", Cubiomes.ITEM_COOKED_COD())
5757
.put("cooked_porkchop", Cubiomes.ITEM_COOKED_PORKCHOP())
5858
.put("cooked_salmon", Cubiomes.ITEM_COOKED_SALMON())
59+
.put("copper_horse_armor", Cubiomes.ITEM_COPPER_HORSE_ARMOR())
5960
.put("crossbow", Cubiomes.ITEM_CROSSBOW())
6061
.put("crying_obsidian", Cubiomes.ITEM_CRYING_OBSIDIAN())
6162
.put("dark_oak_log", Cubiomes.ITEM_DARK_OAK_LOG())
@@ -170,6 +171,7 @@ public class ItemAndEnchantmentsPredicateArgument implements ArgumentType<ItemAn
170171
.put(Cubiomes.ITEM_COOKED_COD(), Items.COOKED_COD)
171172
.put(Cubiomes.ITEM_COOKED_PORKCHOP(), Items.COOKED_PORKCHOP)
172173
.put(Cubiomes.ITEM_COOKED_SALMON(), Items.COOKED_SALMON)
174+
.put(Cubiomes.ITEM_COPPER_HORSE_ARMOR(), Items.COPPER_HORSE_ARMOR)
173175
.put(Cubiomes.ITEM_CROSSBOW(), Items.CROSSBOW)
174176
.put(Cubiomes.ITEM_CRYING_OBSIDIAN(), Items.CRYING_OBSIDIAN)
175177
.put(Cubiomes.ITEM_DARK_OAK_LOG(), Items.DARK_OAK_LOG)

0 commit comments

Comments
 (0)