init
This commit is contained in:
commit
d8d0e9d536
2567 changed files with 167778 additions and 0 deletions
21
kubejs/client_scripts/nukelists.js
Normal file
21
kubejs/client_scripts/nukelists.js
Normal 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)
|
||||
})
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue