BungeeCord Support

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2013-06-02 15:20:49 +10:00
parent c2123d2080
commit 43633a43a9

View file

@ -2291,6 +2291,16 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
// Spigot start
public class Spigot extends Entity.Spigot {
/**
* Gets the connection address of this player, regardless of whether it
* has been spoofed or not.
*
* @return the player's connection address
*/
@NotNull
public InetSocketAddress getRawAddress() {
throw new UnsupportedOperationException("Not supported yet.");
}
}
@NotNull