Package com.onarandombox.MultiverseAdventure.event

Examples of com.onarandombox.MultiverseAdventure.event.MVAResetFinishedEvent


            MultiverseWorld world = plugin.getCore().getMVWorldManager().getMVWorld(name);

            plugin.log(Level.INFO, "Reset of world '" + name + "' finished.");

            // call the event
            plugin.getServer().getPluginManager().callEvent(new MVAResetFinishedEvent(name));

            if (!getPostResetScript().isEmpty()) {
                // Run post reset script, if exists
                Buscript buscript = plugin.getCore().getScriptAPI();
                File postResetScript = new File(buscript.getScriptFolder(), getPostResetScript());
View Full Code Here

TOP

Related Classes of com.onarandombox.MultiverseAdventure.event.MVAResetFinishedEvent

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.