Examples of MVAResetEvent


Examples of com.onarandombox.MultiverseAdventure.event.MVAResetEvent

            }

            plugin.log(Level.INFO, "Beginning reset of world '" + name + "'...");

            // now call the event
            MVAResetEvent resetEvent = new MVAResetEvent(name);
            plugin.getServer().getPluginManager().callEvent(resetEvent);
            if (resetEvent.isCancelled()) {
                plugin.log(Level.INFO, "Reset of world '" + name + "' cancelled.");
                return;
            }

            if (!getPreResetScript().isEmpty()) {
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.