Remove debugging lines.

This commit is contained in:
Maxwolf Goodliffe 2014-06-12 02:49:03 -07:00
parent 4268ace710
commit b3feb7c104
2 changed files with 2 additions and 2 deletions

View file

@ -84,7 +84,7 @@ public abstract class TileMechanical extends TileBase implements INodeProvider,
{
if (ticks % 3 == 0 && (mechanicalNode.markTorqueUpdate || mechanicalNode.markRotationUpdate))
{
ResonantInduction.LOGGER.info("[mechanicalNode] Sending Update");
//ResonantInduction.LOGGER.info("[mechanicalNode] Sending Update");
sendRotationPacket();
mechanicalNode.markRotationUpdate = false;
mechanicalNode.markTorqueUpdate = false;

View file

@ -47,7 +47,7 @@ public class RenderWaterTurbine extends TileEntitySpecialRenderer implements ISi
// Call to actually rotate the gear model to the specified degree.
GL11.glRotatef(renderAngleInDegrees, 0, 1, 0);
ResonantInduction.LOGGER.info("[RenderWaterTurbine] Render Angle: " + renderAngleInDegrees);
//ResonantInduction.LOGGER.info("[RenderWaterTurbine] Render Angle: " + renderAngleInDegrees);
// Determine what type of water turbine model we need to use based on orientation.
if (tile.getDirection().offsetY != 0)