Removed All Incomplete Items From Build.

Fixed Security GUI leaking into other Guis.
Fixed Bug in AE Fluid Stacks.
Fixed Power Drain in Matter Cannon if there is no ammo.
Fixed Not being able to store empty storage cells in Portable Cell.
Fixed Red Background on Upgrade Slots.
This commit is contained in:
AlgorithmX2
2014-02-01 12:13:12 -06:00
parent 97eaf35f6a
commit ee99dce791
8 changed files with 45 additions and 45 deletions
+7
View File
@@ -51,7 +51,10 @@ public final class AEFluidStack extends AEStack<IAEFluidStack> implements IAEFlu
}
private AEFluidStack(AEFluidStack is) {
fluid = is.fluid;
stackSize = is.stackSize;
// priority = is.priority;
setCraftable( is.isCraftable() );
setCountRequestable( is.getCountRequestable() );
@@ -64,6 +67,10 @@ public final class AEFluidStack extends AEStack<IAEFluidStack> implements IAEFlu
throw new RuntimeException( "Invalid Itemstack." );
fluid = is.getFluid();
if ( fluid == null )
throw new RuntimeException( "Fluid is null." );
stackSize = is.amount;
setCraftable( false );
setCountRequestable( 0 );