use of logisticspipes.network.abstractpackets.ModernPacket in project LogisticsPipes by RS485.
the class PacketHandler method onPacketData.
//hacky callback to process packets coming from by the packetbufferhandler decompressors
//TODO replace with proper netty implementation
public static void onPacketData(final LPDataInput data, final EntityPlayer player) {
if (player == null) {
return;
}
final int packetID = data.readShort();
final ModernPacket packet = PacketHandler.packetlist.get(packetID).template();
packet.setDebugId(data.readInt());
packet.readData(data);
PacketHandler.onPacketData(packet, player);
}
Aggregations