Fixed issue with Facades vaporizing.

This commit is contained in:
AlgorithmX2 2014-01-26 00:46:40 -06:00
parent 3a0f3ee792
commit 68a1719794

View file

@ -32,8 +32,8 @@ public class FacadePart implements IFacadePart
public FacadePart(ItemStack facade, ForgeDirection side) { public FacadePart(ItemStack facade, ForgeDirection side) {
if ( facade == null ) if ( facade == null )
throw new RuntimeException( "Facade Part constructed on null item." ); throw new RuntimeException( "Facade Part constructed on null item." );
facade.stackSize = 1; this.facade = facade.copy();
this.facade = facade; this.facade.stackSize = 1;
this.side = side; this.side = side;
} }