Fix formatting to use spaces instead
This commit is contained in:
parent
833858d064
commit
74930a9445
|
@ -10,6 +10,7 @@ import net.minecraftforge.common.util.Constants;
|
|||
|
||||
/**
|
||||
* Base class for tile entities with inventory
|
||||
*
|
||||
* @author ljfa-ag
|
||||
*/
|
||||
public abstract class TEInventory extends TileEntity implements IInventory
|
||||
|
@ -135,7 +136,8 @@ public abstract class TEInventory extends TileEntity implements IInventory
|
|||
public void readFromNBT(NBTTagCompound tag)
|
||||
{
|
||||
super.readFromNBT(tag);
|
||||
NBTTagList invList = tag.getTagList("Inventory", Constants.NBT.TAG_COMPOUND);
|
||||
NBTTagList invList = tag.getTagList("Inventory",
|
||||
Constants.NBT.TAG_COMPOUND);
|
||||
for (int i = 0; i < invList.tagCount(); i++)
|
||||
{
|
||||
NBTTagCompound stackTag = invList.getCompoundTagAt(i);
|
||||
|
|
Loading…
Reference in a new issue