Decorative Diffuser (Thermal Expansion)
Description
Controls what items can be used in to boost the potion time and level in the Decorative Diffuser.
Identifier
The identifier mods.thermalexpansion.diffuser will be used as the default on this page.
All Identifiers
Any of these can be used to refer to this compat:
groovy
mods.thermal.diffuser
mods.thermal.Diffuser
mods.thermalexpansion.diffuser/* Used as page default */
mods.thermalexpansion.DiffuserAdding Entries
Adds recipes in the format
energy,input,fluidOutput:groovymods.thermalexpansion.diffuser.add(ItemStack, int, int)
Example
groovy
mods.thermalexpansion.diffuser.add(item('minecraft:clay'), 2, 30)Removing Entries
Removes the given ItemStack as a catalyst item in the Decorative Diffuser:
groovymods.thermalexpansion.diffuser.remove(ItemStack)Removes all registered recipes:
groovymods.thermalexpansion.diffuser.removeAll()
Example
groovy
mods.thermalexpansion.diffuser.remove(item('minecraft:redstone'))
mods.thermalexpansion.diffuser.removeAll()Getting the value of entries
Iterates through every entry in the registry, with the ability to call remove on any element to remove it:
groovymods.thermalexpansion.diffuser.streamRecipes()
