if (world.isRemote)
return;
PacketCustom packet = new PacketCustom(TransportationSPH.channel(), TransportationSPH.particle_Spawn());
packet.writeByte(2);
packet.writeByte(color).writeByte(count).writeCoord(bc).writeByte(dir);
packet.sendPacketToAllAround(bc.x, bc.y, bc.z, 64.0D, world.provider.dimensionId);
}
private static void packetType3(int color, int count, int dir, BlockCoord bc, World world)