Puts everywhere brackets

This commit is contained in:
thatsIch
2015-04-29 02:30:53 +02:00
parent 23aa8fd72d
commit 64ed05a1b4
465 changed files with 6726 additions and 14 deletions
@@ -89,7 +89,9 @@ public class WrapperChainedInventory implements IInventory
List<IInventory> newOrder = new ArrayList<IInventory>( this.l.size() );
newOrder.add( this.l.get( this.l.size() - 1 ) );
for( int x = 0; x < this.l.size() - 1; x++ )
{
newOrder.add( this.l.get( x ) );
}
this.setInventory( newOrder );
}
}
@@ -181,7 +183,9 @@ public class WrapperChainedInventory implements IInventory
int smallest = 64;
for( IInventory i : this.l )
{
smallest = Math.min( smallest, i.getInventoryStackLimit() );
}
return smallest;
}