ae2 crafts

This commit is contained in:
FriendlyCube 2023-11-28 18:04:06 +02:00 committed by Xikaro
parent 99339029bb
commit f591de57b7
6 changed files with 1154 additions and 1 deletions

View file

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

View file

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