diff --git a/client/gui/implementations/GuiInscriber.java b/client/gui/implementations/GuiInscriber.java index 0d6ea4ee..52143946 100644 --- a/client/gui/implementations/GuiInscriber.java +++ b/client/gui/implementations/GuiInscriber.java @@ -41,7 +41,7 @@ public class GuiInscriber extends AEBaseGui @Override public void drawFG(int offsetX, int offsetY, int mouseX, int mouseY) { - pb.max = cvc.maxProessingTime; + pb.max = cvc.maxProcessingTime; pb.current = cvc.processingTime; pb.FullMsg = (pb.current * 100 / pb.max) + "%"; diff --git a/container/implementations/ContainerInscriber.java b/container/implementations/ContainerInscriber.java index 172a4531..d024cea2 100644 --- a/container/implementations/ContainerInscriber.java +++ b/container/implementations/ContainerInscriber.java @@ -24,7 +24,7 @@ public class ContainerInscriber extends AEBaseContainer Slot bottom; @GuiSync(0) - public int maxProessingTime = -1; + public int maxProcessingTime = -1; @GuiSync(1) public int processingTime = -1; @@ -125,7 +125,7 @@ public class ContainerInscriber extends AEBaseContainer if ( Platform.isServer() ) { - this.maxProessingTime = myte.maxProessingTime; + this.maxProcessingTime = myte.maxProcessingTime; this.processingTime = myte.processingTime; } } diff --git a/tile/misc/TileInscriber.java b/tile/misc/TileInscriber.java index 6aa5e9a6..f3ba571f 100644 --- a/tile/misc/TileInscriber.java +++ b/tile/misc/TileInscriber.java @@ -42,7 +42,7 @@ public class TileInscriber extends AENetworkPowerTile implements IGridTickable AppEngInternalInventory inv = new AppEngInternalInventory( this, 4 ); - public final int maxProessingTime = 100; + public final int maxProcessingTime = 100; public int processingTime = 0; // cycles from 0 - 16, at 8 it preforms the action, at 16 it reenables the normal rotuine. @@ -377,9 +377,9 @@ public class TileInscriber extends AENetworkPowerTile implements IGridTickable // :P } - if ( processingTime > maxProessingTime ) + if ( processingTime > maxProcessingTime ) { - processingTime = maxProessingTime; + processingTime = maxProcessingTime; InscriberRecipe out = getTask(); if ( out != null ) {