и еще рецепты

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

@ -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}`)
})
})
}