hide firmaciv shit
This commit is contained in:
parent
f8acc92f24
commit
ba16c37b6f
3 changed files with 24 additions and 0 deletions
8
kubejs/client_scripts/mods/firmaciv.js
Normal file
8
kubejs/client_scripts/mods/firmaciv.js
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
// priority: 0
|
||||||
|
|
||||||
|
const hideFirmaLifeStuff = (event) => {
|
||||||
|
global.FIRMACIV_DISABLED_ITEMS.forEach(item => {
|
||||||
|
event.hide(item)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -3,6 +3,8 @@
|
||||||
const registerFirmaCivRecipes = (event) => {
|
const registerFirmaCivRecipes = (event) => {
|
||||||
|
|
||||||
event.remove({ id: '/firmaciv:quern/' })
|
event.remove({ id: '/firmaciv:quern/' })
|
||||||
|
|
||||||
|
event.remove({ id: 'firmaciv:anvil/copper_bolt' })
|
||||||
|
|
||||||
event.recipes.tfc.heating('firmaciv:oarlock', 1535)
|
event.recipes.tfc.heating('firmaciv:oarlock', 1535)
|
||||||
.resultFluid(Fluid.of('tfc:metal/cast_iron', 288))
|
.resultFluid(Fluid.of('tfc:metal/cast_iron', 288))
|
||||||
|
|
|
||||||
14
kubejs/startup_scripts/firmaciv/constants.js
Normal file
14
kubejs/startup_scripts/firmaciv/constants.js
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
// priority: 0
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Список хранит предметы,
|
||||||
|
* у которых должны быть удалены тэги и они должны быть скрыты в REI.
|
||||||
|
*/
|
||||||
|
global.FIRMACIV_DISABLED_ITEMS = [
|
||||||
|
'firmaciv:copper_bolt',
|
||||||
|
'firmaciv:kayak_with_paddle_icon_only',
|
||||||
|
'firmaciv:canoe_icon_only',
|
||||||
|
'firmaciv:canoe_with_paddle_icon_only',
|
||||||
|
'firmaciv:rowboat_icon_only',
|
||||||
|
'firmaciv:wood/canoe_component_block/mangrove'
|
||||||
|
];
|
||||||
Loading…
Add table
Add a link
Reference in a new issue