и еще рецепты

This commit is contained in:
Dmitry 2023-11-27 16:53:01 +07:00
parent a9103115c4
commit 78b98c3690
14 changed files with 84 additions and 2 deletions

View file

@ -8,6 +8,7 @@ REIEvents.hide('item', event => {
hideExtendedCraftingStuff(event)
hideSBStuff(event)
hideMoreRedStuff(event)
hideSmallShipsStuff(event)
})

View file

@ -150,6 +150,9 @@ const minecraftItemsToHide = [
'minecraft:prismarine_brick_slab',
'minecraft:dark_prismarine_slab',
'minecraft:smooth_stone',*/
'minecraft:bookshelf',
'minecraft:chiseled_bookshelf',
'minecraft:sand',
'minecraft:suspicious_sand',
'minecraft:red_sand',

View file

@ -0,0 +1 @@
// priority: 199

View file

@ -0,0 +1,9 @@
// priority: 0
const hideSmallShipsStuff = (event) => {
global.vanillaWoodTypes.forEach(woodTypeName => {
global.shipTypes.forEach(shipTypeName => {
event.hide(`smallships:${woodTypeName}_${shipTypeName}`)
})
})
}