ClassNotFoundException temporary fix

This commit is contained in:
Aidan Brady 2013-06-07 14:40:27 -04:00
parent 29240c65fe
commit 3f87aa102e
3 changed files with 7 additions and 6 deletions

View file

@ -24,8 +24,10 @@ public class MekanismRecipe implements IRecipe
private ItemStack output = null;
private Object[] input = null;
public int width = 0;
public int height = 0;
private boolean mirrored = true;
public MekanismRecipe(ItemStack result, Object... recipe)

View file

@ -10,7 +10,6 @@ import mekanism.api.EnumGas;
import mekanism.api.GasTransferProtocol;
import mekanism.api.IEnergizedItem;
import mekanism.api.Object3D;
import mekanism.generators.common.TileEntityElectrolyticSeparator;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.item.ItemStack;
@ -450,7 +449,7 @@ public class PacketHandler implements IPacketHandler
e.printStackTrace();
}
}
else if(packetType == EnumPacketType.ELECTROLYTIC_SEPARATOR_PARTICLE.id)
/*else if(packetType == EnumPacketType.ELECTROLYTIC_SEPARATOR_PARTICLE.id)
{
try {
int x = dataStream.readInt();
@ -467,7 +466,7 @@ public class PacketHandler implements IPacketHandler
System.err.println("[Mekanism] Error while handling electrolytic separator particle packet.");
e.printStackTrace();
}
}
}*/
else if(packetType == EnumPacketType.ROBIT.id)
{
try {
@ -767,10 +766,10 @@ public class PacketHandler implements IPacketHandler
* Sends a request to clients near an Electrolytic Separator to emit a gas dump particle.
* @param tileEntity - TileEntity who is emitting the particle
*/
public static void sendElectrolyticSeparatorParticle(TileEntityElectrolyticSeparator tileEntity)
/*public static void sendElectrolyticSeparatorParticle(TileEntityElectrolyticSeparator tileEntity)
{
sendPacketData(EnumPacketType.ELECTROLYTIC_SEPARATOR_PARTICLE, Transmission.CLIENTS_RANGE, Object3D.get(tileEntity), 40D, tileEntity.xCoord, tileEntity.yCoord, tileEntity.zCoord);
}
}*/
/**
* Sends a Robit GUI packet to the server.

View file

@ -207,7 +207,7 @@ public class TileEntityElectrolyticSeparator extends TileEntityElectricBlock imp
if(new Random().nextInt(3) == 2)
{
PacketHandler.sendElectrolyticSeparatorParticle(this);
//PacketHandler.sendElectrolyticSeparatorParticle(this);
}
}
}