8 lines
143 B
JavaScript
8 lines
143 B
JavaScript
// priority: 0
|
|
|
|
const hideFirmaCivStuff = (event) => {
|
|
global.FIRMACIV_DISABLED_ITEMS.forEach(item => {
|
|
event.hide(item)
|
|
})
|
|
}
|
|
|