#(zloyx_) Custom item can't craft custom item?

9 messages · Page 1 of 1 (latest)

brittle walrus
#

Hi! I have this thing called "Compressed blocks" (like stone, cobble, deepslate and etc.) and i wanted to make a furnace recipe for comp. stone from comp cobblestone, but for some reason comp. cobblestone melts into regular stone...

comp. stone

compressed_stone:
    type: item
    debug: true
    material: stone
    display name: <&e>Compressed stone
    lore:
    - <&f>9 stone!
    enchantments:
    - unbreaking:1
    allow in material recipes: true
    mechanisms:
        hides:
            - ALL
    flags:
        no_place: true
    recipes:
        1:
            type: shaped
            recipe_id: compressed_stone
            group: compressed
            output_quantity: 1
            input:
            - stone|stone|stone
            - stone|stone|stone
            - stone|stone|stone
        2:
            type: furnace
            cook_time: 1s
            input: <item[compressed_cobblestone]>

comp. cobble

compressed_cobblestone:
    type: item
    debug: true
    material: cobblestone
    display name: <&e>Compressed cobblestone
    lore:
    - <&f>9 cobblestone!
    enchantments:
    - unbreaking:1
    allow in material recipes: true
    mechanisms:
        hides:
            - ALL
    flags:
        no_place: true
    recipes:
        1:
            type: shaped
            recipe_id: compressed_cobblestone
            group: compressed
            output_quantity: 1
            input:
            - cobblestone|cobblestone|cobblestone
            - cobblestone|cobblestone|cobblestone
            - cobblestone|cobblestone|cobblestone
eager bloomBOT
#

(zloyx_) Custom item can't craft custom item?

eager bloomBOT
#

Hi I'm AutoThreadBot! Don't mind me, I'll just be adding the helper team to this thread so they can see it. A human will get to you soon.

untold rose
#

The input is just compressed_cobblestone
The item part is completely not needee

#

Oh wait.. you also set allow in material recipes to true.. which does exactly what you said..
That setting ignores the fact its a script item and treats it like a normal item for other recipes

brittle walrus
untold rose
#

Well it didnt work bc of first point

brittle walrus