-
Notifications
You must be signed in to change notification settings - Fork 1
Description
I was creating a couple of recipes for my pack. and i added many chemical reactor recipes, however some seem to simply not load at all;
This recipe does not load:
mods.advancedrocketry.RecipeTweaker.forMachine("ChemicalReactor").builder()
.inputs(ore:materialStarterCulture, ore:foodSalt, liquid:fluid_whey*5000)
.outputs(liquid:ricottacurdliquid*5000)
.power(40)
.timeRequired(200)
.build();
Whereas This one does work:
mods.advancedrocketry.RecipeTweaker.forMachine("ChemicalReactor").builder()
.inputs(ore:dyeRed, ore:foodSalt, liquid:fluid_milk_curds*5000)
.outputs(liquid:montereycurdliquid*5000)
.power(40)
.timeRequired(200)
.build();
Weird behaviour is that when i load in game and i press to see the recipe for: ricottacurdliquid
it first shows me a page for the AR chemical reactor, but its empty, and then i cant click on it anymore nor does it show me that page anymore;