Hi so I'd usually do event.remove({ output: 'projecte:transmutation_table' }) but id run into problems where id remove the andesite alloy crafting recipe from create and it remove like 10 other crafting recipe that dont even output andesite alloy than i went on the wiki to get answers where i found event.remove({ output: 'minecraft:cooked_chicken', type: 'minecraft:campfire_cooking' }) and from my understanding if i did this event.remove({ output: 'projecte:transmutation_table', type: 'minecraft:crafting' }) type:minecraft:crafting itll work but it still didnt thankyou for the help
#why is it not removing just the crafting recipe
7 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
try
ServerEvents.recipes(event => {
event.remove({ output: 'projecte:transmutation_table', type: 'minecraft:crafting_shaped' })
event.remove({ output: 'projecte:transmutation_table', type: 'minecraft:crafting_shapeless' })
})
tsym it finally works but can i ask why i have to do it like that
u dont need to if u dont wanna
because it's actually two types of crafting, one is shaped and the other shapeless (there are actually more special crafting type but they are "special", like combining two damageable items to repair)
oh ok that make thanks for helping me again