
Broken by Create 0.5.1b
nyxatledgerocks opened this issue ยท 8 comments
I deleted the script, unfortunately, but it was mixing eight blackstone and a gold ingot into a gilded blackstone.
MC version is 1.19.2
CreateTweaker version is latest as of this morning
I just updated my dev environment to 0.5.1b and all the scripts are working fine.
Without your script I can't help you unfortunately, but I can confirm that nothing is broken with the mod.
Update: retried this with a new script
import mods.createtweaker.MixingRecipe;
import mods.create.MixingManager;
import mods.create.IProcessingRecipeManager;
MixingManager.addJsonRecipe("mixed_gilded_blackstone", <item:minecraft:gilded_blackstone>, [<item:minecraft:blackstone>, <item:minecraft:gold_nugget>]);
Updated update: tried with another type, and it just straight up didn't work even though it didn't throw an error
import mods.createtweaker.ItemApplicationRecipe;
import mods.create.ItemApplicationManager;
import mods.create.IProcessingRecipeManager;
<recipetype:create:item_application>.addRecipe("applied_gilded_blackstone", [<item:minecraft:gilded_blackstone> % 100], <item:minecraft:blackstone>, <item:minecraft:gold_nugget>, false);