diff options
Diffstat (limited to 'src/main/java/gregtech/api')
-rw-r--r-- | src/main/java/gregtech/api/enums/HeatingCoilLevel.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/gregtech/api/enums/HeatingCoilLevel.java b/src/main/java/gregtech/api/enums/HeatingCoilLevel.java index 085a798e9a..dd1a68601e 100644 --- a/src/main/java/gregtech/api/enums/HeatingCoilLevel.java +++ b/src/main/java/gregtech/api/enums/HeatingCoilLevel.java @@ -19,25 +19,25 @@ public enum HeatingCoilLevel { MAX, //ETERNAL 13501 ; - + private static final HeatingCoilLevel[] VALUES = values(); /** - * @return the coil heat, used for recipes in the Electronic Blast Furnace for example + * @return the coil heat, used for recipes in the Electronic Blast Furnace for example. */ public long getHeat() { return this == None ? 0 : 1L + (900L * this.ordinal()); } /** - * @return the coil tier, used for discount in the Pyrolyse Ofen for example + * @return the coil tier, used for discount in the Pyrolyse Oven for example. */ public byte getTier() { return (byte) (this.ordinal() - 2); } /** - * @return the coil Level, used for Parallels in the Multi Furnace for example + * @return the coil Level, used for Parallels in the Multi Furnace for example. */ public byte getLevel() { return (byte) (1 << Math.min(Math.max(0, this.ordinal() - 2), 4)); |