#cant seem to register the farm and charm cooking pot recipe

14 messages · Page 1 of 1 (latest)

deep sluice
#

hello i am currently adding custom recipes from the lets do series and for some reason i cannot get the cooking pot recipe to register, i am following the recipe off their github but no luck on having it appear in game, i am not getting any errors in chat

alpine moonBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

deep sluice
#
ServerEvents.recipes(event => {
event.custom({
        type: 'farm_and_charm:pot_cooking',
        ingredients: [
            {tag: 'tfc:sweetener'},
            {tag: 'forge:dust/cocoa'},
            {tag: 'forge:dust/cocoa'},
            {item: 'minecraft:milk_bucket'}
        ],
        container: {
            required: false,
            item: {item: 'minecraft:bowl'}
        },
        result: {
        item: 'bakery:chocolate_truffle',
        count: 4
        }
    })
#

i saw someone else brought up a similar issue in here but looks like they never explained how they solved it if they did😭

cyan raptorBOT
#

Please send your KubeJS server log. It can be found at /minecraft/logs/kubejs/server.log.
If you are on 1.18 or 1.16 it will be called server.txt.
Please send the file directly, without links or snippets.

deep sluice
cyan raptorBOT
#

Paste version of server.log from @deep sluice

novel hare
#

It shouldn't be item: {item: 'minecraft:bowl'}

#

It should just be item: 'minecraft:bowl'

deep sluice
#

so should this work instead?

container: {
            required: false,
            item: 'minecraft:bowl'
        },
novel hare
#

Should do

#

If it did work

cyan raptorBOT
#

Please close your ticket (with </ticket close:1054771505520717835> or the button atop this thread) once you resolved your issue!
This also helps others that would like to help out, as they don't have to look into this thread to check if it has been resolved by now.

Do you have any other questions regarding your issue? Feel free to ask!
Note: You should create a new post for unrelated issues.

deep sluice
#

..i cant believe that was the reason LOL thank you very much
idk why their github has item listed twice but that does seem to work!