fixed initial gate activation status
This commit is contained in:
parent
2b532f7f66
commit
48fe5076a3
1 changed files with 4 additions and 0 deletions
|
@ -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++) {
|
||||
|
|
Loading…
Reference in a new issue