From 4a0df699510a68f9193ec719f945e256846e1d59 Mon Sep 17 00:00:00 2001
From: SpaceToad <spacetoadcraft@gmail.com>
Date: Fri, 9 May 2014 18:19:50 +0200
Subject: [PATCH] fixed style error

---
 common/buildcraft/core/robots/EntityRobot.java | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/common/buildcraft/core/robots/EntityRobot.java b/common/buildcraft/core/robots/EntityRobot.java
index 40dd07e9..30219639 100755
--- a/common/buildcraft/core/robots/EntityRobot.java
+++ b/common/buildcraft/core/robots/EntityRobot.java
@@ -33,11 +33,12 @@ public class EntityRobot extends EntityLiving implements
 	public SafeTimeTracker scanForTasks = new SafeTimeTracker (40, 10);
 
 	public LaserData laser = new LaserData ();
-	protected RobotAIBase currentAI;
-	protected RobotAIBase nextAI;
 	public IRobotTask currentTask;
 	public DockingStation dockingStation = new DockingStation();
 
+	protected RobotAIBase currentAI;
+	protected RobotAIBase nextAI;
+
 	private boolean needsUpdate = false;
 
 	public class DockingStation {