Examples of IPlayerFileData


Examples of net.minecraft.server.IPlayerFileData

   * Obtains the Player Data Controller currently assigned to the server
   *
   * @return the currently assigned Player Data Controller
   */
  public static PlayerDataController get() {
    final IPlayerFileData base = CommonNMS.getPlayerList().playerFileData;
    final PlayerDataController controller;
    if (base instanceof Translator) {
      controller = ((Translator) base).controller;
    } else {
      controller = new PlayerDataController();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.