Typo rqeusted

This commit is contained in:
thatsIch 2014-09-21 01:49:25 +02:00
parent a700f1fb3d
commit 6c6ce4db7e

View file

@ -53,7 +53,7 @@ public class PartP2PItems extends PartP2PTunnel<PartP2PItems> implements IPipeCo
} }
int oldSize = 0; int oldSize = 0;
boolean requsted; boolean requested;
IInventory cachedInv; IInventory cachedInv;
LinkedList<IInventory> which = new LinkedList<IInventory>(); LinkedList<IInventory> which = new LinkedList<IInventory>();
@ -135,18 +135,18 @@ public class PartP2PItems extends PartP2PTunnel<PartP2PItems> implements IPipeCo
@Override @Override
public TickRateModulation tickingRequest(IGridNode node, int TicksSinceLastCall) public TickRateModulation tickingRequest(IGridNode node, int TicksSinceLastCall)
{ {
boolean wasReq = requsted; boolean wasReq = requested;
if ( requsted && cachedInv != null ) if ( requested && cachedInv != null )
((WrapperChainedInventory) cachedInv).cycleOrder(); ((WrapperChainedInventory) cachedInv).cycleOrder();
requsted = false; requested = false;
return wasReq ? TickRateModulation.FASTER : TickRateModulation.SLOWER; return wasReq ? TickRateModulation.FASTER : TickRateModulation.SLOWER;
} }
IInventory getDest() IInventory getDest()
{ {
requsted = true; requested = true;
if ( cachedInv != null ) if ( cachedInv != null )
return cachedInv; return cachedInv;