diff options
author | Maya <10861407+serenibyss@users.noreply.github.com> | 2024-11-07 18:00:15 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-08 00:00:15 +0000 |
commit | 5562d6434d40a6b5847af651e0838f49599028e2 (patch) | |
tree | 66622c5ca80d925b8708fd43fda85b66f416e82a /src/main/java/gregtech/common/tileentities | |
parent | 0704c7cd21065b0e31ee84ecb195fc7590f3d686 (diff) | |
download | GT5-Unofficial-5562d6434d40a6b5847af651e0838f49599028e2.tar.gz GT5-Unofficial-5562d6434d40a6b5847af651e0838f49599028e2.tar.bz2 GT5-Unofficial-5562d6434d40a6b5847af651e0838f49599028e2.zip |
Fix HILE render turning off while running when pressing power button (#3443)
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gregtech/common/tileentities')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/MTEIndustrialLaserEngraver.java | 6 |
1 files changed, 0 insertions, 6 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 31bac13013..19f38e4ac3 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/MTEIndustrialLaserEngraver.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/MTEIndustrialLaserEngraver.java @@ -226,12 +226,6 @@ public class MTEIndustrialLaserEngraver extends MTEExtendedPowerMultiBlockBase<M } @Override - public void onDisableWorking() { - if (renderer != null) renderer.setShouldRender(false); - super.onDisableWorking(); - } - - @Override public void onBlockDestroyed() { if (renderer != null) renderer.setShouldRender(false); super.onBlockDestroyed(); |