Removed unneeded imports and getDescriptionPacket() method

This commit is contained in:
Aidan Brady 2012-10-24 16:37:51 -04:00
parent abbe19d4e5
commit 71b71613ba
3 changed files with 0 additions and 63 deletions

View file

@ -423,37 +423,6 @@ public abstract class TileEntityAdvancedElectricMachine extends TileEntityBasicM
{
return new String[] {"getStored", "getSecondaryStored", "getProgress", "isActive", "facing", "canOperate"};
}
public Packet getDescriptionPacket()
{
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
DataOutputStream output = new DataOutputStream(bytes);
try {
output.writeInt(EnumPacketType.TILE_ENTITY.id);
output.writeInt(xCoord);
output.writeInt(yCoord);
output.writeInt(zCoord);
output.writeInt(facing);
output.writeByte(isActive ? 1 : 0);
output.writeInt(operatingTicks);
output.writeInt(energyStored);
output.writeInt(secondaryEnergyStored);
output.writeInt(currentMaxEnergy);
output.writeInt(currentTicksRequired);
} catch (IOException e)
{
System.err.println("[ObsidianIngots] Error while writing tile entity packet.");
e.printStackTrace();
}
Packet250CustomPayload packet = new Packet250CustomPayload();
packet.channel = "ObsidianIngots";
packet.data = bytes.toByteArray();
packet.length = packet.data.length;
return packet;
}
public Object[] callMethod(IComputerAccess computer, int method, Object[] arguments) throws Exception
{

View file

@ -345,36 +345,6 @@ public abstract class TileEntityElectricMachine extends TileEntityBasicMachine
{
return new String[] {"getStored", "getProgress", "isActive", "facing", "canOperate"};
}
public Packet getDescriptionPacket()
{
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
DataOutputStream output = new DataOutputStream(bytes);
try {
output.writeInt(EnumPacketType.TILE_ENTITY.id);
output.writeInt(xCoord);
output.writeInt(yCoord);
output.writeInt(zCoord);
output.writeInt(facing);
output.writeByte(isActive ? 1 : 0);
output.writeInt(operatingTicks);
output.writeInt(energyStored);
output.writeInt(currentMaxEnergy);
output.writeInt(currentTicksRequired);
} catch (IOException e)
{
System.err.println("[ObsidianIngots] Error while writing tile entity ");
e.printStackTrace();
}
Packet250CustomPayload packet = new Packet250CustomPayload();
packet.channel = "ObsidianIngots";
packet.data = bytes.toByteArray();
packet.length = packet.data.length;
return packet;
}
public Object[] callMethod(IComputerAccess computer, int method, Object[] arguments) throws Exception
{

View file

@ -29,8 +29,6 @@ import buildcraft.api.core.Orientations;
import com.google.common.io.ByteArrayDataInput;
import cpw.mods.fml.common.Loader;
import dan200.computer.api.IComputerAccess;
import dan200.computer.api.IPeripheral;