Fixed issue with Facades vaporizing.
This commit is contained in:
parent
3a0f3ee792
commit
68a1719794
1 changed files with 2 additions and 2 deletions
|
@ -32,8 +32,8 @@ public class FacadePart implements IFacadePart
|
|||
public FacadePart(ItemStack facade, ForgeDirection side) {
|
||||
if ( facade == null )
|
||||
throw new RuntimeException( "Facade Part constructed on null item." );
|
||||
facade.stackSize = 1;
|
||||
this.facade = facade;
|
||||
this.facade = facade.copy();
|
||||
this.facade.stackSize = 1;
|
||||
this.side = side;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue