Реврайт готов

This commit is contained in:
Dmitry 2023-11-28 17:45:58 +07:00
parent 91c7141d18
commit 94a2d7af2e
54 changed files with 2452 additions and 1571 deletions

View file

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