aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Disassembler.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Disassembler.java b/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Disassembler.java
index 815c9e0867..f63b1eaa99 100644
--- a/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Disassembler.java
+++ b/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Disassembler.java
@@ -58,7 +58,9 @@ public class GT_MetaTileEntity_Disassembler extends GT_MetaTileEntity_BasicMachi
new GT_MultiTexture(
new GT_RenderedTexture(OVERLAY_FRONT_DISASSEMBLER),
new GT_RenderedGlowTexture(OVERLAY_FRONT_DISASSEMBLER_GLOW)),
- new GT_RenderedTexture(OVERLAY_TOP_DISASSEMBLER_ACTIVE),
+ new GT_MultiTexture(
+ new GT_RenderedTexture(OVERLAY_TOP_DISASSEMBLER_ACTIVE),
+ new GT_RenderedGlowTexture(OVERLAY_TOP_DISASSEMBLER_ACTIVE_GLOW)),
new GT_RenderedTexture(OVERLAY_TOP_DISASSEMBLER),
new GT_RenderedTexture(OVERLAY_BOTTOM_DISASSEMBLER_ACTIVE),
new GT_RenderedTexture(OVERLAY_BOTTOM_DISASSEMBLER)