forked from copygirl/heck
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
402 B
15 lines
402 B
2 years ago
|
// priority: 0
|
||
|
|
||
|
onEvent("jei.hide.items", event => {
|
||
|
event.hide("thermal:apple_block");
|
||
|
event.hide("thermal:carrot_block");
|
||
|
event.hide("thermal:potato_block");
|
||
|
event.hide("thermal:beetroot_block");
|
||
|
event.hide("thermal:gunpowder_block");
|
||
|
|
||
|
event.hide("quark:carrot_crate");
|
||
|
event.hide("quark:potato_crate");
|
||
|
event.hide("quark:beetroot_crate");
|
||
|
event.hide("quark:sugar_cane_block");
|
||
|
});
|