2016-03-02 19:28:01 +00:00
|
|
|
package me.totalfreedom.totalfreedommod.command;
|
2012-03-06 19:25:22 +00:00
|
|
|
|
2018-07-25 05:54:00 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.config.ConfigEntry;
|
2016-03-06 15:56:15 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
2015-10-19 17:43:46 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.util.FUtil;
|
2012-03-06 19:25:22 +00:00
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
2019-08-27 23:25:50 +00:00
|
|
|
import org.bukkit.Server;
|
2012-03-06 19:25:22 +00:00
|
|
|
|
2016-03-06 15:56:15 +00:00
|
|
|
@CommandPermissions(level = Rank.SENIOR_ADMIN, source = SourceType.ONLY_CONSOLE, blockHostConsole = true)
|
2013-04-10 02:05:24 +00:00
|
|
|
@CommandParameters(description = "Wipe the flatlands map. Requires manual restart after command is used.", usage = "/<command>")
|
2015-10-19 17:43:46 +00:00
|
|
|
public class Command_wipeflatlands extends FreedomCommand
|
2012-03-06 19:25:22 +00:00
|
|
|
{
|
2015-11-22 18:26:47 +00:00
|
|
|
|
2012-03-06 19:25:22 +00:00
|
|
|
@Override
|
2015-11-22 18:26:47 +00:00
|
|
|
public boolean run(final CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
2012-03-06 19:25:22 +00:00
|
|
|
{
|
2016-05-12 19:40:39 +00:00
|
|
|
plugin.sf.setSavedFlag("do_wipe_flatlands", true);
|
2012-11-05 03:44:24 +00:00
|
|
|
|
2018-07-25 05:54:00 +00:00
|
|
|
if (!ConfigEntry.FLATLANDS_GENERATE.getBoolean())
|
|
|
|
{
|
|
|
|
msg("Flatlands generation is disabled, therefore it cannot be wiped.");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
FUtil.bcastMsg("Server is going offline for flatlands wipe.", ChatColor.GRAY);
|
2012-11-05 03:44:24 +00:00
|
|
|
|
2018-07-30 07:23:01 +00:00
|
|
|
if (plugin.wgb.isEnabled())
|
2018-07-25 02:44:00 +00:00
|
|
|
{
|
|
|
|
plugin.wgb.wipeRegions(plugin.wm.flatlands.getWorld());
|
|
|
|
}
|
2018-06-16 19:50:35 +00:00
|
|
|
|
2013-08-14 14:01:42 +00:00
|
|
|
for (Player player : server.getOnlinePlayers())
|
2012-11-05 03:44:24 +00:00
|
|
|
{
|
2013-08-14 14:01:42 +00:00
|
|
|
player.kickPlayer("Server is going offline for flatlands wipe, come back in a few minutes.");
|
2012-11-05 03:44:24 +00:00
|
|
|
}
|
2012-03-06 19:25:22 +00:00
|
|
|
|
2018-03-18 08:32:50 +00:00
|
|
|
if (!plugin.amp.enabled)
|
2017-11-16 22:32:09 +00:00
|
|
|
{
|
2018-03-18 08:32:50 +00:00
|
|
|
server.shutdown();
|
2017-11-16 22:32:09 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-18 08:32:50 +00:00
|
|
|
plugin.amp.restartServer();
|
2017-11-16 22:32:09 +00:00
|
|
|
}
|
2012-03-06 19:25:22 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2019-09-02 07:22:02 +00:00
|
|
|
}
|