update to latest forge & mappings
This commit is contained in:
parent
f32820fea3
commit
4e8a047082
|
@ -37,8 +37,7 @@ archivesBaseName = "ironchest"
|
|||
|
||||
// Setup the forge minecraft plugin data. Specify the preferred forge/minecraft version here
|
||||
minecraft {
|
||||
version = "1.8-11.14.0.1239-1.8"
|
||||
mappings = 'snapshot_20140930'
|
||||
version = "1.8-11.14.0.1251-1.8"
|
||||
}
|
||||
|
||||
// This wrangles the resources for the jar files- stuff like textures and languages
|
||||
|
|
|
@ -24,10 +24,8 @@ import net.minecraft.nbt.NBTTagCompound;
|
|||
import net.minecraft.nbt.NBTTagList;
|
||||
import net.minecraft.network.Packet;
|
||||
import net.minecraft.server.gui.IUpdatePlayerListBox;
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraft.tileentity.TileEntityLockable;
|
||||
import net.minecraft.util.AxisAlignedBB;
|
||||
import net.minecraft.util.IChatComponent;
|
||||
|
||||
public class TileEntityIronChest extends TileEntityLockable implements IUpdatePlayerListBox, IInventory
|
||||
{
|
||||
|
@ -551,7 +549,7 @@ public class TileEntityIronChest extends TileEntityLockable implements IUpdatePl
|
|||
}
|
||||
|
||||
@Override
|
||||
public void clearInventory()
|
||||
public void clear()
|
||||
{
|
||||
for (int i = 0; i < this.chestContents.length; ++i)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue