LTDV10/packet/kubejs/client_scripts/JEI.js
2026-04-14 18:20:56 +08:00

26 lines
718 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

JEIEvents.addItems(e => {
e.add([
'create_connected:fan_freezing_catalyst'
])
})
JEIEvents.addFluids(e => {
e.add([
"minecraft:milk"
])
})
JEIEvents.hideItems(e => {
e.hide([
// 使用创造模式物品栏移除一直失败被迫使用JEI隐藏。
// 其他情况下,能用创造模式物品栏移除就用创造模式物品栏移除
'createdeco:gold_coinstack',
'createdeco:netherite_coinstack',
'createdeco:brass_coin',
'createdeco:brass_coinstack',
'createdeco:iron_coinstack',
'createdeco:copper_coinstack',
'createdeco:industrial_iron_coin',
'createdeco:industrial_iron_coinstack',
'createdeco:zinc_coin',
'createdeco:zinc_coinstack',
])
})