Fix off by 1 letter in inventory serialization (#1072)

This commit is contained in:
Nicholas Ignoffo 2017-02-25 17:59:10 -08:00
parent f3d980ee89
commit 203a2f5fc7

View file

@ -62,7 +62,7 @@ public class TileInventory extends TileBase implements IInventory
if (j >= 0 && j < inventory.size())
{
inventory.set(i, new ItemStack(data));
inventory.set(j, new ItemStack(data)); // No matter how much an i looks like a j, it is not one. They are drastically different characters and cause drastically different things to happen. Apparently I didn't know this at one point. - TehNut
}
}
}