Package org.getspout.spoutapi.event.spout

Examples of org.getspout.spoutapi.event.spout.SpoutcraftFailedEvent


        if (--ticksLeft > 0) {
          timer.put(player.getName(), ticksLeft);
        } else {
          timer.remove(player.getName());
          SpoutCraftPlayer scp = (SpoutCraftPlayer)SpoutManager.getPlayer(player);
          Bukkit.getServer().getPluginManager().callEvent(new SpoutcraftFailedEvent(scp));
          scp.queued = null;
          if (player.hasPermission("spout.plugin.ignorespoutcraft")) {
            break;
          }
          if (!player.hasPermission("spout.plugin.forcespoutcraft")) {
View Full Code Here

TOP

Related Classes of org.getspout.spoutapi.event.spout.SpoutcraftFailedEvent

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.