и еще рецепты
This commit is contained in:
parent
a9103115c4
commit
78b98c3690
14 changed files with 84 additions and 2 deletions
|
|
@ -8,6 +8,7 @@ REIEvents.hide('item', event => {
|
|||
hideExtendedCraftingStuff(event)
|
||||
hideSBStuff(event)
|
||||
hideMoreRedStuff(event)
|
||||
hideSmallShipsStuff(event)
|
||||
})
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
1
kubejs/client_scripts/smallShips/constants.js
Normal file
1
kubejs/client_scripts/smallShips/constants.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
// priority: 199
|
||||
9
kubejs/client_scripts/smallShips/rei.js
Normal file
9
kubejs/client_scripts/smallShips/rei.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
// priority: 0
|
||||
|
||||
const hideSmallShipsStuff = (event) => {
|
||||
global.vanillaWoodTypes.forEach(woodTypeName => {
|
||||
global.shipTypes.forEach(shipTypeName => {
|
||||
event.hide(`smallships:${woodTypeName}_${shipTypeName}`)
|
||||
})
|
||||
})
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue