use of de.dytanic.cloudnet.api.player.PlayerExecutorBridge in project CloudNet by Dytanic.
the class CloudServer method getPlayerAndCache.
@Deprecated
public void getPlayerAndCache(UUID uniqueId) {
CloudPlayer cloudPlayer = CloudAPI.getInstance().getOnlinePlayer(uniqueId);
if (cloudPlayer != null) {
cloudPlayer.setPlayerExecutor(new PlayerExecutorBridge());
this.cloudPlayers.put(uniqueId, cloudPlayer);
}
}
Aggregations