Имплементация Chisel And Bits

This commit is contained in:
Dmitry 2024-01-02 10:09:01 +07:00
parent 5a8b89f7e1
commit b40b6bfba9
6 changed files with 143 additions and 2 deletions

View file

@ -13,6 +13,7 @@ REIEvents.hide('item', event => {
hideMoreRedStuff(event)
hideRailWaysStuff(event)
hideCreateAdditionsStuff(event)
hideChiselAndBitsStuff(event)
})
REIEvents.groupEntries(event => {

View file

@ -0,0 +1,7 @@
// priority: 0
const hideChiselAndBitsStuff = (event) => {
global.CHISEL_AND_BITS_DISABLED_ITEMS.forEach(item => {
event.hide(item)
})
}