Removed debug code

This commit is contained in:
Robert 2013-12-26 16:58:23 -05:00
parent 5dba6d8cf5
commit d23038a233
2 changed files with 0 additions and 3 deletions

View file

@ -47,7 +47,6 @@ public class ProgramHelper
}
if (this.currentTask != null)
{
System.out.println("[ProgramHelper]Updating task:" + this.currentTask.toString());
if (!this.hasTaskBeenCalled)
{
this.hasTaskBeenCalled = true;

View file

@ -104,8 +104,6 @@ public class TileEntityArmbot extends TileEntityAssembly implements IMultiBlock,
float preYaw = this.targetYaw, prePitch = this.targetPitch;
if (!this.worldObj.isRemote && this.ticks % 10 == 0)
{
System.out.println("ArmbotTargetRotation Yaw:" + this.targetYaw + " Pitch:" + this.targetPitch);
System.out.println("ArmbotActualRotation Yaw:" + this.actualYaw + " Pitch:" + this.actualPitch);
this.programHelper.onUpdate(this.worldObj, new Vector3(this));
if (this.targetYaw != preYaw || this.targetPitch != prePitch)
{