fix syncID issues, should fix a lot of issues with the inv handing.

This commit is contained in:
modmuss50 2019-07-22 11:54:13 +01:00
parent 50c13bafdc
commit 7f8674f1ca
83 changed files with 209 additions and 211 deletions

View file

@ -33,8 +33,8 @@ public class GuiGasTurbine extends GuiBase {
TileGasTurbine tile;
public GuiGasTurbine(final PlayerEntity player, final TileGasTurbine tile) {
super(player, tile, tile.createContainer(player));
public GuiGasTurbine(int syncID, final PlayerEntity player, final TileGasTurbine tile) {
super(player, tile, tile.createContainer(syncID, player));
this.tile = tile;
}