Skip to content

Commit

Permalink
fix: add books to Books tag (#1105)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaeaKat authored and klikli-dev committed Mar 31, 2024
1 parent 2724612 commit 89797fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/generated/resources/data/forge/tags/items/books.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"values": [
"occultism:dictionary_of_spirits"
"occultism:dictionary_of_spirits",
"minecraft:book"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private void addForgeTags(HolderLookup.Provider provider) {
this.tag(OccultismTags.Items.METAL_AXES).add(Items.IRON_AXE, Items.GOLDEN_AXE, Items.DIAMOND_AXE, Items.NETHERITE_AXE).replace(false);

// Books
this.tag(OccultismTags.Items.BOOKS).add(OccultismItems.DICTIONARY_OF_SPIRITS.get()).replace(false);
this.tag(OccultismTags.Items.BOOKS).add(OccultismItems.DICTIONARY_OF_SPIRITS.get(),Items.BOOK).replace(false);

// Fruits
this.tag(OccultismTags.Items.FRUITS).add(Items.APPLE).replace(false);
Expand Down

0 comments on commit 89797fd

Please sign in to comment.