Shorten variable name to fit into the horizontal space.
This commit is contained in:
parent
19fb264b3b
commit
2835e2139d
1 changed files with 2 additions and 2 deletions
|
@ -454,9 +454,9 @@ public class TileIOPort extends AENetworkInvTile implements IUpgradeableHost, IC
|
||||||
{
|
{
|
||||||
super.getDrops( w, x, y, z, drops );
|
super.getDrops( w, x, y, z, drops );
|
||||||
|
|
||||||
for (int upgradeInventoryIndex = 0; upgradeInventoryIndex < this.upgrades.getSizeInventory(); upgradeInventoryIndex++)
|
for (int upgradeIndex = 0; upgradeIndex < this.upgrades.getSizeInventory(); upgradeIndex++)
|
||||||
{
|
{
|
||||||
ItemStack stackInSlot = this.upgrades.getStackInSlot(upgradeInventoryIndex);
|
ItemStack stackInSlot = this.upgrades.getStackInSlot(upgradeIndex);
|
||||||
|
|
||||||
if ( stackInSlot != null )
|
if ( stackInSlot != null )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue