I'm trying to remove modded recipes with the pack.mcmeta filter in 1.21.1, but it doesn't work.

Here's what I wrote in the pack.mcmeta file:

{ "pack": { "description": "Removed Recipes", "pack_format": 48 }, "filter": { "block": [{ "namespace": "blueprint", "path": "tags/block/wooden_bookshelves.json" }] "item": [{ "namespace": "blueprint", "path": "tags/item/wooden_bookshelves.json" }] "block": [{ "namespace": "woodworks", "path": "tags/block/wooden_boards.json" }] "item": [{ "namespace": "woodworks", "path": "tags/item/wooden_boards.json" }] } }

I tried to follow a tutorial on YouTube, but it was for vanilla stuff only, no modded.

If you know about these mods, I'm specifically trying to remove the Wooden Board blocks and all the normal (not Chiseled) Bookshelf variants (even the vanilla Bookshelf), both of which are from Woodworks (Blueprint is a core mod required for Woodworks).

Here are the file paths for each of the 4 paths:

  1. woodworks.jar/data/blueprint/tags/block/wooden_bookshelves.json
  2. woodworks.jar/data/blueprint/tags/item/wooden_bookshelves.json
  3. woodworks.jar/data/woodworks/tags/block/wooden_boards.json
  4. woodworks.jar/data/woodworks/tags/item/wooden_boards.json
Continue to help post