Package org.spout.vanilla.component.entity.misc

Examples of org.spout.vanilla.component.entity.misc.Sleep.wake()


    if (skipNight) {
      time = Time.DAWN.getTime();
      for (Player player : playerList) {
        Sleep c = player.get(Sleep.class);
        if (c != null && player.isOnline()) {
          c.wake();
        }
      }
    }
    getData().put(VanillaData.WORLD_TIME, time);
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.