Modpack-1.12.2/scripts/ore_veins/indicators.2.zs
Wroclaw 2d1a2f14e5 Add ore indicators as items placed on the ground
Item placing on the ground is added by Draconic Evolution,
I used a janky way to setblock generated indicator to that tile.
That tile needs nbt so I had to set a block using execute as setblock command,
which is bad, because it spams logs and operators chat
2022-11-13 07:54:48 +01:00

5 lines
139 B
Text

for i in loadedMods["contenttweaker"].items {
if (i.definition.name.contains("internal")) {
mods.jei.JEI.hide(i);
}
}