You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
The text was updated successfully, but these errors were encountered:
After further testing it seems the problem is that i cannot use oredictionaries that contain only one entry
like ore:foodFruit (in my pack only included apple)
its uhh weird... cause i used and it worked, and only 1 thing has that also..
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;
The text was updated successfully, but these errors were encountered: