Skip to content

Commit

Permalink
Compat for waystones and productive bees (#10473)
Browse files Browse the repository at this point in the history
  • Loading branch information
uecasm authored Nov 24, 2024
1 parent a38fbcb commit 0dc6a8d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
{
"values": [
{
"id": "waystones:waystone",
"required": false
},
{
"id": "waystones:sandy_waystone",
"required": false
},
{
"id": "waystones:mossy_waystone",
"id": "#waystones:waystones",
"required": false
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
"values": [
"#minecraft:logs",
"#minecolonies:mangrove_tree",
"minecraft:mushroom_stem"
"minecraft:mushroom_stem",
{
"id": "#productivebees:nests/wood_nests",
"required": false
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,11 @@ protected void addTags(final HolderLookup.Provider holder)
tag(ModTags.tree)
.addTag(BlockTags.LOGS)
.addTag(ModTags.mangroveTree)
.add(Blocks.MUSHROOM_STEM);
.add(Blocks.MUSHROOM_STEM)
.addOptionalTag(new ResourceLocation("productivebees", "nests/wood_nests"));

tag(ModTags.colonyProtectionException)
.addOptional(new ResourceLocation("waystones:waystone"))
.addOptional(new ResourceLocation("waystones:sandy_waystone"))
.addOptional(new ResourceLocation("waystones:mossy_waystone"));
.addOptionalTag(new ResourceLocation("waystones", "waystones"));

tag(ModTags.indestructible).add(Blocks.BEDROCK);
tag(ModTags.oreChanceBlocks)
Expand Down

0 comments on commit 0dc6a8d

Please sign in to comment.