fixed initial gate activation status

This commit is contained in:
SpaceToad 2014-05-18 17:23:46 +02:00
parent 2b532f7f66
commit 48fe5076a3

View file

@ -70,6 +70,10 @@ public class ContainerGateInterface extends BuildCraftContainer {
public ContainerGateInterface(IInventory playerInventory, Pipe pipe) {
super(0);
for (int i = 0; i < actionsState.length; ++i) {
actionsState[i] = ActionState.Deactivated;
}
this.playerIInventory = playerInventory;
for (int y = 0; y < 3; y++) {