Skip to content

Commit

Permalink
fix: made candle tag no longer recursive. (#1089)
Browse files Browse the repository at this point in the history
  • Loading branch information
klikli-dev committed Mar 16, 2024
1 parent d3b9652 commit 1102c55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"values": [
"#minecraft:candles"
"#occultism:candles"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void addMinecraftTags(HolderLookup.Provider provider) {
.add(OccultismBlocks.RAW_IESNIUM_BLOCK.get())
.add(OccultismBlocks.SPIRIT_LANTERN.get());
this.tag(BlockTags.CAMPFIRES).add(OccultismBlocks.SPIRIT_CAMPFIRE.get()).replace(false);
this.tag(BlockTags.CANDLES).addTags(OccultismTags.Blocks.CANDLES).replace(false);
this.tag(BlockTags.CANDLES).addTags(OccultismTags.Blocks.OCCULTISM_CANDLES).replace(false);
this.tag(BlockTags.CROPS).add(OccultismBlocks.DATURA.get()).replace(false);
this.tag(BlockTags.LEAVES).add(OccultismBlocks.OTHERWORLD_LEAVES.get(), OccultismBlocks.OTHERWORLD_LEAVES_NATURAL.get()).replace(false);
this.tag(BlockTags.LOGS).add(OccultismBlocks.OTHERWORLD_LOG.get(), OccultismBlocks.OTHERWORLD_LOG_NATURAL.get()).replace(false);
Expand Down

0 comments on commit 1102c55

Please sign in to comment.