hide ad_astra some stuff

This commit is contained in:
Dmitry 2023-11-29 20:32:40 +07:00
parent 3f4bd2763c
commit dffbd218d4
2 changed files with 8 additions and 0 deletions

View file

@ -6,6 +6,7 @@ REIEvents.hide('item', event => {
hideGTCEUStuff(event)
hideCreateStuff(event)
hideExtendedCraftingStuff(event)
hideAdAstraStuff(event)
hideSophisticatedBackpacksStuff(event)
hideMoreRedStuff(event)
hideSmallShipsStuff(event)

View file

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