diff options
author | Mary <33456283+FourIsTheNumber@users.noreply.github.com> | 2024-11-07 18:05:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-07 23:05:09 +0000 |
commit | d42811f069353e51938ca6481da3f93d61aef652 (patch) | |
tree | d71301e8c7f550841c7d3c88fef345707d7f46aa /src/main/java/gregtech/common/tileentities/machines/multi | |
parent | 3ceea443eddf69af233e1dc3411cd86e8b81a69c (diff) | |
download | GT5-Unofficial-d42811f069353e51938ca6481da3f93d61aef652.tar.gz GT5-Unofficial-d42811f069353e51938ca6481da3f93d61aef652.tar.bz2 GT5-Unofficial-d42811f069353e51938ca6481da3f93d61aef652.zip |
Fix HILE waila info (#3459)
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines/multi')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/MTEIndustrialLaserEngraver.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/MTEIndustrialLaserEngraver.java b/src/main/java/gregtech/common/tileentities/machines/multi/MTEIndustrialLaserEngraver.java index 50a919ce50..31bac13013 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/MTEIndustrialLaserEngraver.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/MTEIndustrialLaserEngraver.java @@ -124,7 +124,7 @@ public class MTEIndustrialLaserEngraver extends MTEExtendedPowerMultiBlockBase<M // Cube root the amperage to get the parallels laserAmps = (int) Math.cbrt(laserSource.maxAmperesOut()); laserTier = (int) laserSource.getOutputTier(); - tierName = GTValues.VN[laserTier]; + tierName = GTValues.VN[laserTier + 1]; return true; } } |