AOF6-Vocality/kubejs/client_scripts/rei.js
2023-03-02 15:41:30 -06:00

24 lines
666 B
JavaScript

const DELETED_ITEMS = [
'croptosis:fertilized_sand',
'croptosis:fertilized_farmland',
'croptosis:fertilized_dirt',
'croptosis:potash_ore',
'croptosis:apatite_ore',
'croptosis:deepslate_apatite_ore',
'croptosis:potash_block',
'croptosis:apatite_block',
'croptosis:feather_meal',
'croptosis:rotten_pile',
'croptosis:apatite',
'croptosis:potash',
'croptosis:potash_pieces',
'nethersdelight:iron_machete',
'nethersdelight:diamond_machete',
'nethersdelight:netherite_machete',
'nethersdelight:golden_machete',
];
REIEvents.hide('item', (event) => {
DELETED_ITEMS.forEach(id => event.hide(id));
});