Item Obliterator (Modpack Utils Series)

Item Obliterator (Modpack Utils Series)

23M Downloads

config issue (Might be quick)

loganmac9 opened this issue ยท 1 comments

commented

Im trying to add and item to the recipe remover.

I've done this:

// -----------------------------------------------------------
  // Items here will get their recipes disabled
  // Keep in mind this already is applied to blacklisted items
  "only_disable_recipes": [
    "examplemod:example_item"
  ],
 ["create_sa:copper_chestplate"]

  // -----------------------------------------------------------

I understand there needed to be a comma, but there's no other direction on how to write things?

commented

This fixed it:

[
    "examplemod:example_item",
    "create_sa:copper_chestplate"
],