Fixed Max Stack Size of ItemGoldDoor

Changed the max stack size of ItemGoldDoor to 16 as it is for Vanilla
doors on some modpacks. Later versions of Vanilla have door stacking to
64 so this will need to change eventually.
This commit is contained in:
SenseiKiwi 2014-06-25 15:18:50 -04:00
parent a4d0f39390
commit 794310bd98

View file

@ -15,6 +15,7 @@ public class ItemGoldDoor extends ItemDoor
public ItemGoldDoor(int par1, Material par2Material) public ItemGoldDoor(int par1, Material par2Material)
{ {
super(par1, par2Material); super(par1, par2Material);
this.setMaxStackSize(16);
} }
@Override @Override