Package com.comphenix.protocol.injector.server

Examples of com.comphenix.protocol.injector.server.TemporaryPlayerFactory


   * @param server - Bukkit server.
   * @return The temporary player.
   */
  public Player createTemporaryPlayer(Server server) {
    if (tempPlayerFactory == null)
      tempPlayerFactory = new TemporaryPlayerFactory();
   
    // Create and associate the fake player with this network injector
    return tempPlayerFactory.createTemporaryPlayer(server, this);
  }
View Full Code Here

TOP

Related Classes of com.comphenix.protocol.injector.server.TemporaryPlayerFactory

Copyright © 2018 www.massapicom. 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.