Examples of canUnload()


Examples of com.bergerkiller.bukkit.tc.controller.MinecartGroup.canUnload()

          return;
        }
        // Minecart was removed but was not dead - unload the group
        // This really should never happen - Chunk/World unload events take care of this
        // If it does happen, it implies that a chunk unloaded without raising an event
        if (group.canUnload()) {
          TrainCarts.plugin.log(Level.WARNING, "Train '" + group.getProperties().getTrainName() + "' forcibly unloaded!");
        } else {
          TrainCarts.plugin.log(Level.WARNING, "Train '" + group.getProperties().getTrainName() + "' had to be restored after unexpected unload");
        }
        group.unload();
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.