Hi, I'm attempting to add recipes to the RFtools spawner using KubeJS in the Mechanical Mastery modpack, as far as I can tell from examples I've entered the recipes correctly, but they don't appear to be showing up in the game. I've restarted the game client entirely, run a /reload command, is there something I'm missing to make the recipes work, or is there something I've done wrong that'd cause these recipes to not show up at all?
Recipes added below:
event.custom({
type: "rftoolsutility:spawner",
id: "rftoolsutility:thermal_basalz",
power: 1000,
entity: "thermal.basalz",
item1: {
amount: 0.1,
ingredient: {
item: "thermal:basalz_rod"
}
},
item2: {
"amount": 0.5,
"ingredient": {
"item": "minecraft:stone"
}
},
item3: {
"amount": 30.0,
"living": true
}
}
);
event.custom({
type: "rftoolsutility:spawner",
id: "rftoolsutility:thermal_blizz",
power: 1000,
entity: "thermal:blizz",
item1: {
amount: 0.1,
ingredient: {
item: "thermal:blizz_rod"
}
},
item2: {
amount: 0.5,
ingredient: {
item: "minecraft:ice"
}
},
item3: {
amount: 30.0,
living: true
}
}
);
event.custom({
type: "rftoolsutility:spawner",
id: "rftoolsutility:thermal_blitz",
power: 1000,
entity: "thermal:blitz",
item1: {
amount: 0.1,
ingredient: {
item: "thermal:blitz_rod"
}
},
item2: {
amount: 0.5,
ingredient: {
item: "minecraft:sand"
}
},
item3: {
amount: 30.0,
living: true
}
}
);