Most of the 1.8 Port.

This commit is contained in:
AlgorithmX2
2015-06-15 19:44:59 -05:00
parent 17465e68e8
commit 38afde724b
824 changed files with 12120 additions and 9158 deletions
@@ -22,6 +22,7 @@ package appeng.util.inv;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IChatComponent;
public class WrapperInvSlot
@@ -86,18 +87,6 @@ public class WrapperInvSlot
this.inv.setInventorySlotContents( this.slot, itemstack );
}
@Override
public String getInventoryName()
{
return this.inv.getInventoryName();
}
@Override
public boolean hasCustomInventoryName()
{
return this.inv.hasCustomInventoryName();
}
@Override
public int getInventoryStackLimit()
{
@@ -117,21 +106,68 @@ public class WrapperInvSlot
}
@Override
public void openInventory()
public String getName()
{
this.inv.openInventory();
return this.inv.getName();
}
@Override
public void closeInventory()
public boolean hasCustomName()
{
this.inv.closeInventory();
return this.inv.hasCustomName();
}
@Override
public void openInventory(
EntityPlayer player )
{
this.inv.openInventory(player);
}
@Override
public void closeInventory(
EntityPlayer player )
{
this.inv.closeInventory(player);
}
@Override
public void clear()
{
this.inv.clear();
}
@Override
public int getField(
int id )
{
return inv.getField( id );
}
@Override
public int getFieldCount()
{
return this.inv.getFieldCount();
}
@Override
public boolean isItemValidForSlot( int i, ItemStack itemstack )
{
return WrapperInvSlot.this.isItemValid( itemstack ) && this.inv.isItemValidForSlot( this.slot, itemstack );
}
@Override
public IChatComponent getDisplayName()
{
return inv.getDisplayName();
}
@Override
public void setField(
int id,
int value )
{
inv.setField( id, value );
}
}
}