Hello everyone,
I have been playing around with KubeJS for the first time since i want to help in a modpack that is interesting me.
I followed the Guide frome the mekmm Github for the KubeJS integration
event.custom({
"type": "mekmm:planting",
"item_Input": {
"count": 1,
"item": 'pamhc2trees:apple_sapling'
},
"chemical_input": {
"amount": 1,
"chemical": 'mekmm:nutrient_solution'
},
"main_output": {
"count": 5,
"id": 'minecraft:oak_log'
},
"secondary_output": {
"count": 2,
"id": 'minecraft:apple'
},
"per_tick_usage":true
})
}
)```
This is the code for the recipe i want to add
I'm getting this error:
```[22:32:47] [WARN] Error parsing recipe mekmm:kjs/5ko18oge3fko5yt42axnminh7[mekmm:planting]: {"type":"mekmm:planting","item_Input":{"count":1,"item":"pamhc2trees:apple_sapling"},"chemical_input":{"amount":1,"chemical":"mekmm:nutrient_solution"},"main_output":{"count":5,"id":"minecraft:oak_log"},"secondary_output":{"count":2,"id":"minecraft:apple"},"per_tick_usage":true}: Missing itemInput, expected to find a JsonObject```
Maybe i'm doing something wrong or not seeing through correctly.
Thanks for your help in advance

