diff --git a/src/main/java/tconstruct/blocks/logic/SmelteryLogic.java b/src/main/java/tconstruct/blocks/logic/SmelteryLogic.java index 98d5eb582a1..8d72192e635 100644 --- a/src/main/java/tconstruct/blocks/logic/SmelteryLogic.java +++ b/src/main/java/tconstruct/blocks/logic/SmelteryLogic.java @@ -1152,4 +1152,11 @@ public void onDataPacket (INetworkManager net, Packet132TileEntityData packet) worldObj.markBlockForRenderUpdate(xCoord, yCoord, zCoord); this.needsUpdate = true; } + + @Override + public void sendDebugToPlayer(EntityPlayer player) { + super.sendDebugToPlayer(player); + player.addChatMessage("[SmelteryLogic] layers: " + layers + ", liquid: " + currentLiquid + "/" + maxLiquid + ", direction: " + direction); + player.addChatMessage("[SmelteryLogic] inUse: " + inUse + ", tick: " + tick); + } }