Fixes #1481: Updated cell itemcount when empty

This commit is contained in:
yueh 2015-08-06 23:04:57 +02:00 committed by thatsIch
parent d26caa5f8b
commit 465f9efbd5
1 changed files with 2 additions and 2 deletions

View File

@ -400,9 +400,9 @@ public class CellInventory implements ICellInventory
}
else
{
this.storedItems = (short) this.cellItems.size();
this.tagCompound.setShort( ITEM_TYPE_TAG, this.storedItems );
}
this.storedItems = (short) this.cellItems.size();
/*
* if ( tagCount instanceof NBTTagInt ) ((NBTTagInt) tagCount).data = storedItemCount = itemCount; else
@ -413,9 +413,9 @@ public class CellInventory implements ICellInventory
}
else
{
this.storedItemCount = itemCount;
this.tagCompound.setInteger( ITEM_COUNT_TAG, itemCount );
}
this.storedItemCount = itemCount;
// clean any old crusty stuff...
for(; x < oldStoredItems && x < this.maxItemTypes; x++ )