Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import cofh.core.inventory.ComparableItemStack;
import com.cleanroommc.groovyscript.api.GroovyBlacklist;
import com.cleanroommc.groovyscript.api.IIngredient;
import com.cleanroommc.groovyscript.api.documentation.annotations.Admonition;
import com.cleanroommc.groovyscript.api.documentation.annotations.Example;
import com.cleanroommc.groovyscript.api.documentation.annotations.MethodDescription;
import com.cleanroommc.groovyscript.api.documentation.annotations.RegistryDescription;
Expand All @@ -14,7 +15,7 @@

import java.util.Objects;

@RegistryDescription
@RegistryDescription(admonition = @Admonition(value = "groovyscript.wiki.thermalexpansion.steam.note0", type = Admonition.Type.INFO))
public class Steam extends VirtualizedRegistry<Steam.SteamRecipe> {

@Override
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/groovyscript/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -2965,6 +2965,7 @@ groovyscript.wiki.thermalexpansion.smelter.chance.value=Sets the chance the seco

groovyscript.wiki.thermalexpansion.steam.title=Steam Dynamo
groovyscript.wiki.thermalexpansion.steam.description=Converts an input itemstack into power, taking time based on the power.
groovyscript.wiki.thermalexpansion.steam.note0=If no energy is provided from an itemstack, the furnace fuel burn time will be checked, with the time in ticks being multiplied by 10 to calculate the energy output and if the energy is over 3000 the itemstack will be a valid fuel.
groovyscript.wiki.thermalexpansion.steam.add=Adds recipes in the format `itemStack`, `energy`
groovyscript.wiki.thermalexpansion.steam.removeByInput=Removes all recipes with given IIngredient

Expand Down