24 lines
666 B
JavaScript
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));
|
|
});
|