package net.minecraft.server;
import io.netty.buffer.Unpooled;
import java.util.Collection;
import java.util.Iterator;
import javax.annotation.Nullable;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
public class PacketDebug {
private static final Logger LOGGER = LogManager.getLogger();
public static void a(WorldServer worldserver, BlockPosition blockposition, String s, int i, int j) {
PacketDataSerializer packetdataserializer = new PacketDataSerializer(Unpooled.buffer());
packetdataserializer.a(blockposition);
packetdataserializer.writeInt(i);
packetdataserializer.a(s);
packetdataserializer.writeInt(j);
a(worldserver, packetdataserializer, PacketPlayOutCustomPayload.o);
}
public static void a(WorldServer worldserver) {
PacketDataSerializer packetdataserializer = new PacketDataSerializer(Unpooled.buffer());
a(worldserver, packetdataserializer, PacketPlayOutCustomPayload.p);
}
public static void a(WorldServer worldserver, ChunkCoordIntPair chunkcoordintpair) {}
public static void a(WorldServer worldserver, BlockPosition blockposition) {}
public static void b(WorldServer worldserver, BlockPosition blockposition) {}
public static void c(WorldServer worldserver, BlockPosition blockposition) {}
public static void a(World world, EntityInsentient entityinsentient, @Nullable PathEntity pathentity, float f) {}
public static void a(World world, BlockPosition blockposition) {}
public static void a(GeneratorAccess generatoraccess, StructureStart structurestart) {}
public static void a(World world, EntityInsentient entityinsentient, PathfinderGoalSelector pathfindergoalselector) {}
public static void a(WorldServer worldserver, Collection<Raid> collection) {}
public static void a(EntityLiving entityliving) {}
public static void a(EntityBee entitybee) {}
public static void a(TileEntityBeehive tileentitybeehive) {}
private static void a(WorldServer worldserver, PacketDataSerializer packetdataserializer, MinecraftKey minecraftkey) {
Packet<?> packet = new PacketPlayOutCustomPayload(minecraftkey, packetdataserializer);
Iterator iterator = worldserver.getMinecraftWorld().getPlayers().iterator();
while (iterator.hasNext()) {
EntityHuman entityhuman = (EntityHuman) iterator.next();
((EntityPlayer) entityhuman).playerConnection.sendPacket(packet);
}
}
}