1
0

ItemGrid: Renamed all Item to Slot - better and consistent naming

git-svn-id: http://mc-server.googlecode.com/svn/trunk@1381 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com
2013-04-10 21:03:15 +00:00
parent cc26f16463
commit 929d299965
7 changed files with 114 additions and 114 deletions

View File

@@ -79,7 +79,7 @@ void cNBTChunkSerializer::AddItemGrid(const cItemGrid & a_Grid, int a_BeginSlotN
int NumSlots = a_Grid.GetNumSlots();
for (int i = 0; i < NumSlots; i++)
{
const cItem & Item = a_Grid.GetItem(i);
const cItem & Item = a_Grid.GetSlot(i);
if (Item.IsEmpty())
{
continue;