1
0
mirror of https://git.fellies.tech/minecraft/fellies.git synced 2021-02-13 10:18:48 +00:00
Files
Fellies/kubejs/server_scripts/recipes/remove.js
2021-01-29 20:05:32 +01:00

11 lines
644 B
JavaScript

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'});
});