PssbleTrngle / SliceAndDice

Making automation for Farmer's Delight more sensible
https://www.curseforge.com/minecraft/mc-mods/slice-and-dice
Other
17 stars 15 forks source link

Mod converts recipes with a _manual_only ID suffix #65

Closed Treeways closed 1 year ago

Treeways commented 1 year ago

What happened?

I'm trying to fix a specific recipe that has to do with cooking with a water bucket. These water bucket recipes are bugged in my modpack, and duplicates the bucket. (See https://github.com/Creators-of-Create/Create/issues/4701)

In base Create mod, specific recipes will not be autogenerated by Create when the _manual_only suffix is detected in its recipe ID. For example, it will stop Shapeless recipes from generating Automated Mixing Recipes (and vice versa for Shaped/Automated Shaped Crafting), like so:

image

Example: delightful:food/marshmallow_stick: Create will generate an Automated Shapeless recipe from this original recipe. delightful:food/marshmallow_stick_manual_only: Create will NOT generate an Automated Shapeless recipe for this.


I was able to override the original cooking pot recipe to change the ID to kubejs:nut_milk_manual_only, but it did not prevent Slice and Dice from autogenerating a mixing recipe.

Currently, Slice and Dice ignores this suffix and generates mixing/slicing recipes despite this.

image

image

Loader

forge

Mod Version

2.0.3

Minecraft Version

1.19

Relevant log output

No response

PssbleTrngle commented 1 year ago

Oh I did not know create was filtering out recipe with this suffix, but that makes sense, will add this in the next release