always save changes when inventory changes.

should fix #3059
This commit is contained in:
Florian Scandella
2017-08-29 23:21:08 +02:00
parent 8163b30479
commit e9a8a8cdff
@@ -174,6 +174,7 @@ public class AppEngInternalInventory implements IInventory, Iterable<ItemStack>
if( this.getTileEntity() != null && this.eventsEnabled() ) if( this.getTileEntity() != null && this.eventsEnabled() )
{ {
this.getTileEntity().onChangeInventory( this, -1, InvOperation.markDirty, null, null ); this.getTileEntity().onChangeInventory( this, -1, InvOperation.markDirty, null, null );
this.getTileEntity().saveChanges();
} }
} }
@@ -200,6 +201,7 @@ public class AppEngInternalInventory implements IInventory, Iterable<ItemStack>
if( this.getTileEntity() != null && this.eventsEnabled() ) if( this.getTileEntity() != null && this.eventsEnabled() )
{ {
this.getTileEntity().onChangeInventory( this, slotIndex, InvOperation.markDirty, null, null ); this.getTileEntity().onChangeInventory( this, slotIndex, InvOperation.markDirty, null, null );
this.getTileEntity().saveChanges();
} }
} }