Skip to content

Commit

Permalink
Fix trophy tag (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexNijjar committed Jun 15, 2024
1 parent af9db3c commit 6c4b5b4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 1.21 2024-06-14T15:04:48.026246 Tags for minecraft:item mod id handcrafted
// 1.21 2024-06-15T11:08:37.057245 Tags for minecraft:item mod id handcrafted
148d9202ace672cfdf451a46397702b32fab9450 data/handcrafted/tags/item/benches.json
3662d7ac15380cec631c2eb872b6cbbb69072d62 data/handcrafted/tags/item/bowls.json
d23ee811738879d0b22d489c76f6947f6b0ccf40 data/handcrafted/tags/item/chairs.json
Expand Down Expand Up @@ -26,6 +26,6 @@ d112ab59e44172869a67906c9fa183dc24bd4cfd data/handcrafted/tags/item/shelves.json
0a476d2c80837899a06ef0ec1d6f93c65a06b6e6 data/handcrafted/tags/item/tables.json
408a5532264615089c4903b190b340520128fb8d data/handcrafted/tags/item/trim_materials.json
2eb1cdbe5ae5c4c2dccbe453cb855815860eb4c6 data/handcrafted/tags/item/trims.json
df918434c0a6a43e73962c398e63489375534dd4 data/handcrafted/tags/item/trophies.json
fc2ac2105e437d1f002cab5eca7c30cf01640e40 data/handcrafted/tags/item/trophies.json
d8eb078f9f793ef17806bb6e83b18f5649f6542e data/handcrafted/tags/item/wooden_benches.json
ab0e36c3ebe380ea3defda5c2803d4177ca1e908 data/minecraft/tags/item/beds.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"handcrafted:tropical_fish_trophy",
"handcrafted:wither_skeleton_trophy",
"handcrafted:wolf_trophy",
"handcrafted:phantom_trophy",
"handcrafted:creeper_trophy",
"handcrafted:skeleton_trophy",
"handcrafted:evoker_trophy",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ public class ModItems {
public static final RegistryEntry<Item> WITHER_SKELETON_TROPHY = TROPHIES.register("wither_skeleton_trophy", () -> new BlockItem(ModBlocks.WITHER_SKELETON_TROPHY.get(), new Item.Properties()));
public static final RegistryEntry<Item> WOLF_TROPHY = TROPHIES.register("wolf_trophy", () -> new BlockItem(ModBlocks.WOLF_TROPHY.get(), new Item.Properties()));

public static final RegistryEntry<Item> PHANTOM_TROPHY = ITEMS.register("phantom_trophy", () -> new BlockItem(ModBlocks.PHANTOM_TROPHY.get(), new Item.Properties()));
public static final RegistryEntry<Item> PHANTOM_TROPHY = TROPHIES.register("phantom_trophy", () -> new BlockItem(ModBlocks.PHANTOM_TROPHY.get(), new Item.Properties()));

public static final RegistryEntry<Item> CREEPER_TROPHY = TROPHIES.register("creeper_trophy", () -> new BlockItem(ModBlocks.CREEPER_TROPHY.get(), new Item.Properties()));
public static final RegistryEntry<Item> SKELETON_TROPHY = TROPHIES.register("skeleton_trophy", () -> new BlockItem(ModBlocks.SKELETON_TROPHY.get(), new Item.Properties()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
{
"id": "#c:chests",
"required": false
},
{
"id": "#forge:chests",
"required": false
}
]
}

0 comments on commit 6c4b5b4

Please sign in to comment.