This commit is contained in:
Shiroyasha 2025-09-14 21:22:24 +03:00
commit a956daf8e2
Signed by: shiroyashik
GPG key ID: E4953D3940D7860A
2351 changed files with 163047 additions and 0 deletions

View file

@ -0,0 +1,21 @@
// priority: -10
/**
* Hides all objects on the nukeLists and items matching the Unification Patterns from JEI/EMI.
*/
JEIEvents.hideItems(event => {
global.itemNukeList.forEach(item => {
event.hide(item);
})
// Hide items matching the unification patterns.
// For definitions, see KubeJS/startup_scripts/unificationPatterns.js
event.hide(global.unificationPattern)
event.hide(global.nuclearcraftFuelPattern)
event.hide(global.nuclearcraftIsotopePattern)
})
JEIEvents.hideFluids(event => {
global.fluidNukeList.forEach(fluid => {
event.hide(fluid)
})
})