I have a mod that adds only 1 new recipe for items that already exist by default.
A recipe that makes 1 outpost lamp from 1 torch, in mode without a crafting table (plain).
The problem is that without admin mode, I don't see them in the list of recipes.
Here is "player.config.patch" file :
[
{"op":"add","path":"/defaultBlueprints/tier1/-","value":{"item":"SPoutpostlamp"}}
]
Here is "SPoutpostlamp.recipe" file :
{
"input" :[
{ "item" : "torch", "count" : 1 }
],
"output" : { "item" : "outpostlamp", "count" : 1 },
"groups" : [ "plain", "lights", "all" ]
}
For the group parameter, I used different combinations, but none of them helped.
"[ "plain", "objects", "all" ]" - taken from campfire recipe.
"[ "plain", "lights", "all" ]" - taken from torch recipe.
"[ "plain", "all" ]"
"[ "plain" ]"
Please tell me where the problem is.
