I've been in the process of porting my server sided mod from 1.8.9 to 1.10.2.
There's just one thing I haven't been able to figure out, tried all sorts of searches, but couldn't find anything about it.
In 1.8.9 I was sending a vanilla packet to individual players, a Title packet, which now goes by the name of "SPacketTitle".
I was achieving this with the EntityPlayerMP playerNetServerHandler.sendPacket(packet).
However, this method no longer exists and I can't seem to figure out the alternative.
I've seen SimpleImpl, but I think this is only for custom packets?
I also saw a "getPlayerList().sendPacketToAllPlayers(packet)" method in PlayerList, but this sends it to every player.
My question is, what is the proper way to send a vanilla Title packet to an individual player?