Format sourcecode

This commit is contained in:
yueh
2017-07-20 21:17:10 +02:00
parent 66437897be
commit 621910df91
295 changed files with 2142 additions and 1562 deletions
@@ -797,7 +797,7 @@ public abstract class AEBaseContainer extends Container
}
else if( hand.isItemEqual( is ) )
{
is.setCount(Math.min( is.getMaxStackSize(), is.getCount() + 1 ));
is.setCount( Math.min( is.getMaxStackSize(), is.getCount() + 1 ) );
}
else
{
@@ -1251,7 +1251,7 @@ public abstract class AEBaseContainer extends Container
if( !testB.isEmpty() && testB.getCount() > b.getSlotStackLimit() )
{
if ( !testA.isEmpty() )
if( !testA.isEmpty() )
{
return;
}
@@ -1260,7 +1260,7 @@ public abstract class AEBaseContainer extends Container
testB.setCount( b.getSlotStackLimit() );
testA = testB.copy();
testA.setCount( totalB - testA.getCount() );
testA.setCount( totalB - testA.getCount() );
}
a.putStack( testA );