From d663104a0b5dfc5548e2f58560ed3fb343744aba Mon Sep 17 00:00:00 2001 From: DelusionalLogic Date: Tue, 11 Jun 2013 23:12:27 +0200 Subject: [PATCH] Turns out you indent with tabs --- common/buildcraft/transport/GateVanilla.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/buildcraft/transport/GateVanilla.java b/common/buildcraft/transport/GateVanilla.java index 79e61be2..4bc1104e 100644 --- a/common/buildcraft/transport/GateVanilla.java +++ b/common/buildcraft/transport/GateVanilla.java @@ -212,7 +212,7 @@ public class GateVanilla extends Gate { public void startResolution() { if (hasPulser() && pulser.isActive()) { pulser.disablePulse(); - pipe.container.scheduleRenderUpdate(); + pipe.container.scheduleRenderUpdate(); } } @@ -221,11 +221,11 @@ public class GateVanilla extends Gate { if (action instanceof ActionEnergyPulser) { pulser.enablePulse(count); - pipe.container.scheduleRenderUpdate(); + pipe.container.scheduleRenderUpdate(); return true; } else if (action instanceof ActionSingleEnergyPulse) { pulser.enableSinglePulse(count); - pipe.container.scheduleRenderUpdate(); + pipe.container.scheduleRenderUpdate(); return true; } return false;