Fellies/kubejs/server_scripts/recipes/remove.js

11 lines
644 B
JavaScript
Raw Normal View History

2021-01-29 19:05:32 +00:00
events.listen('recipes', (event) => {
// Additional Lights
event.remove({output: 'additional_lights:fire_for_standing_torch_s'});
event.remove({output: 'additional_lights:fire_for_standing_torch_l'});
event.remove({output: 'additional_lights:fire_for_fire_pit_s'});
event.remove({output: 'additional_lights:fire_for_fire_pit_l'});
event.remove({output: 'additional_lights:soul_fire_for_standing_torch_s'});
event.remove({output: 'additional_lights:soul_fire_for_standing_torch_l'});
event.remove({output: 'additional_lights:soul_fire_for_fire_pit_s'});
event.remove({output: 'additional_lights:soul_fire_for_fire_pit_l'});
});