[EXPAND] [[messages]] messageTitle = "P2P Conversion Enhancements (#838)" messageBody = ''' [FEATURE] [QOL] [DETAILS] details = [ "Allows Shift-Scrolling to Cycle Between P2Ps", "Adds Conversion Assembler Recipes Between P2Ps", ] [DETAILS] ''' [[messages]] messageTitle = "Fix NuclearCraft Liquid Helium Active Cooler Recipe (#838)" messageBody = "[BUG]" [EXPAND]
11 lines
374 B
Groovy
11 lines
374 B
Groovy
import net.minecraft.item.ItemStack
|
|
import classes.postInit.Common
|
|
|
|
/* Cleanup EIO Glasses in JEI, removing the dyed versions of each variant of glass
|
|
* Since we are lazy, remove all, then add back the original
|
|
*/
|
|
for (var stack in Common.eioGlasses) {
|
|
mods.jei.ingredient.hide(new ItemStack(stack.getItem(), 1, Short.MAX_VALUE))
|
|
mods.jei.ingredient.add(stack.copy())
|
|
}
|