2015-02-19 04:24:05 +01:00
|
|
|
package com.intellectualcrafters.plot;
|
|
|
|
|
2015-07-05 17:44:10 +02:00
|
|
|
import java.io.File;
|
2015-07-06 11:38:37 +02:00
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.PrintWriter;
|
|
|
|
import java.lang.reflect.Field;
|
|
|
|
import java.net.URLClassLoader;
|
2015-07-14 15:25:01 +02:00
|
|
|
import java.util.ArrayDeque;
|
2015-07-05 17:44:10 +02:00
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.List;
|
2015-07-06 11:38:37 +02:00
|
|
|
import java.util.Map;
|
|
|
|
import java.util.Stack;
|
2015-07-05 17:44:10 +02:00
|
|
|
import java.util.UUID;
|
|
|
|
|
2015-07-15 21:57:11 +02:00
|
|
|
import com.intellectualcrafters.plot.commands.*;
|
2015-07-05 17:44:10 +02:00
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.Chunk;
|
2015-07-14 15:25:01 +02:00
|
|
|
import org.bukkit.Location;
|
2015-07-05 17:44:10 +02:00
|
|
|
import org.bukkit.World;
|
|
|
|
import org.bukkit.command.PluginCommand;
|
|
|
|
import org.bukkit.entity.Entity;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.event.Listener;
|
|
|
|
import org.bukkit.generator.ChunkGenerator;
|
|
|
|
import org.bukkit.plugin.Plugin;
|
2015-07-06 11:38:37 +02:00
|
|
|
import org.bukkit.plugin.PluginManager;
|
2015-07-05 17:44:10 +02:00
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
2015-07-06 11:38:37 +02:00
|
|
|
import org.bukkit.plugin.java.JavaPluginLoader;
|
2015-07-05 17:44:10 +02:00
|
|
|
|
2015-02-21 05:27:01 +01:00
|
|
|
import com.intellectualcrafters.plot.config.C;
|
|
|
|
import com.intellectualcrafters.plot.config.Settings;
|
2015-05-01 06:13:12 +02:00
|
|
|
import com.intellectualcrafters.plot.database.plotme.ClassicPlotMeConnector;
|
2015-05-14 11:45:14 +02:00
|
|
|
import com.intellectualcrafters.plot.database.plotme.LikePlotMeConverter;
|
2015-07-09 06:19:49 +02:00
|
|
|
import com.intellectualcrafters.plot.database.plotme.PlotMeConnector_017;
|
2015-02-23 00:12:33 +01:00
|
|
|
import com.intellectualcrafters.plot.flag.FlagManager;
|
2015-02-22 14:20:41 +01:00
|
|
|
import com.intellectualcrafters.plot.generator.BukkitHybridUtils;
|
2015-02-21 05:27:01 +01:00
|
|
|
import com.intellectualcrafters.plot.generator.HybridGen;
|
2015-02-22 14:20:41 +01:00
|
|
|
import com.intellectualcrafters.plot.generator.HybridUtils;
|
2015-07-05 17:44:10 +02:00
|
|
|
import com.intellectualcrafters.plot.listeners.APlotListener;
|
|
|
|
import com.intellectualcrafters.plot.listeners.ChunkListener;
|
|
|
|
import com.intellectualcrafters.plot.listeners.ForceFieldListener;
|
|
|
|
import com.intellectualcrafters.plot.listeners.InventoryListener;
|
|
|
|
import com.intellectualcrafters.plot.listeners.PlayerEvents;
|
|
|
|
import com.intellectualcrafters.plot.listeners.PlayerEvents_1_8;
|
|
|
|
import com.intellectualcrafters.plot.listeners.PlayerEvents_1_8_3;
|
|
|
|
import com.intellectualcrafters.plot.listeners.PlotListener;
|
|
|
|
import com.intellectualcrafters.plot.listeners.PlotPlusListener;
|
|
|
|
import com.intellectualcrafters.plot.listeners.TNTListener;
|
|
|
|
import com.intellectualcrafters.plot.listeners.WorldEvents;
|
2015-04-12 07:22:03 +02:00
|
|
|
import com.intellectualcrafters.plot.listeners.worldedit.WEListener;
|
2015-04-18 15:47:13 +02:00
|
|
|
import com.intellectualcrafters.plot.listeners.worldedit.WESubscriber;
|
2015-07-14 15:25:01 +02:00
|
|
|
import com.intellectualcrafters.plot.object.PlotId;
|
|
|
|
import com.intellectualcrafters.plot.object.PlotManager;
|
2015-04-09 07:41:14 +02:00
|
|
|
import com.intellectualcrafters.plot.object.PlotPlayer;
|
2015-07-14 15:25:01 +02:00
|
|
|
import com.intellectualcrafters.plot.object.PlotWorld;
|
2015-02-23 00:12:33 +01:00
|
|
|
import com.intellectualcrafters.plot.titles.AbstractTitle;
|
|
|
|
import com.intellectualcrafters.plot.titles.DefaultTitle;
|
2015-07-05 17:44:10 +02:00
|
|
|
import com.intellectualcrafters.plot.util.BlockManager;
|
|
|
|
import com.intellectualcrafters.plot.util.BlockUpdateUtil;
|
|
|
|
import com.intellectualcrafters.plot.util.ChunkManager;
|
|
|
|
import com.intellectualcrafters.plot.util.ConsoleColors;
|
|
|
|
import com.intellectualcrafters.plot.util.EconHandler;
|
|
|
|
import com.intellectualcrafters.plot.util.EventUtil;
|
|
|
|
import com.intellectualcrafters.plot.util.InventoryUtil;
|
|
|
|
import com.intellectualcrafters.plot.util.MainUtil;
|
|
|
|
import com.intellectualcrafters.plot.util.PlayerManager;
|
|
|
|
import com.intellectualcrafters.plot.util.SetupUtils;
|
|
|
|
import com.intellectualcrafters.plot.util.TaskManager;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.BukkitChunkManager;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.BukkitEconHandler;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.BukkitEventUtil;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.BukkitInventoryUtil;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.BukkitPlayerManager;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.BukkitSetBlockManager;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.BukkitSetupUtils;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.BukkitTaskManager;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.BukkitUtil;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.Metrics;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.SendChunk;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.SetBlockFast;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.SetBlockFast_1_8;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.SetBlockSlow;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.SetGenCB;
|
|
|
|
import com.intellectualcrafters.plot.util.bukkit.UUIDHandler;
|
2015-02-23 00:12:33 +01:00
|
|
|
import com.intellectualcrafters.plot.uuid.DefaultUUIDWrapper;
|
2015-04-12 07:24:54 +02:00
|
|
|
import com.intellectualcrafters.plot.uuid.LowerOfflineUUIDWrapper;
|
2015-02-23 00:12:33 +01:00
|
|
|
import com.intellectualcrafters.plot.uuid.OfflineUUIDWrapper;
|
|
|
|
import com.intellectualcrafters.plot.uuid.UUIDWrapper;
|
2015-04-12 07:22:03 +02:00
|
|
|
import com.sk89q.worldedit.WorldEdit;
|
2015-02-21 05:27:01 +01:00
|
|
|
import com.sk89q.worldedit.bukkit.WorldEditPlugin;
|
2015-02-19 07:08:15 +01:00
|
|
|
|
2015-02-20 07:34:19 +01:00
|
|
|
public class BukkitMain extends JavaPlugin implements Listener, IPlotMain {
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
public static BukkitMain THIS = null;
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-06-24 05:31:13 +02:00
|
|
|
private int[] version;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean checkVersion(final int major, final int minor, final int minor2) {
|
|
|
|
if (version == null) {
|
|
|
|
try {
|
|
|
|
version = new int[3];
|
|
|
|
final String[] split = Bukkit.getBukkitVersion().split("-")[0].split("\\.");
|
|
|
|
version[0] = Integer.parseInt(split[0]);
|
|
|
|
version[1] = Integer.parseInt(split[1]);
|
|
|
|
if (version.length == 3) {
|
|
|
|
version[2] = Integer.parseInt(split[2]);
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
} catch (Exception e) {
|
2015-06-24 05:31:13 +02:00
|
|
|
return false;
|
2015-02-20 11:53:18 +01:00
|
|
|
}
|
|
|
|
}
|
2015-06-24 05:31:13 +02:00
|
|
|
return (version[0] > major) || ((version[0] == major) && (version[1] > minor)) || ((version[0] == major) && (version[1] == minor) && (version[2] >= minor2));
|
2015-02-20 11:53:18 +01:00
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public void onEnable() {
|
|
|
|
THIS = this;
|
2015-07-03 14:15:20 +02:00
|
|
|
PS.instance = new PS(this);
|
2015-02-19 07:08:15 +01:00
|
|
|
if (Settings.METRICS) {
|
|
|
|
try {
|
|
|
|
final Metrics metrics = new Metrics(this);
|
|
|
|
metrics.start();
|
|
|
|
log(C.PREFIX.s() + "&6Metrics enabled.");
|
|
|
|
} catch (final Exception e) {
|
|
|
|
log(C.PREFIX.s() + "&cFailed to load up metrics.");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log("&dUsing metrics will allow us to improve the plugin, please consider it :)");
|
|
|
|
}
|
2015-07-13 23:19:20 +02:00
|
|
|
// File file = new File(this.getDirectory() + File.separator + "disabled.yml");
|
|
|
|
// if (file.exists()) {
|
|
|
|
// file.delete();
|
|
|
|
// try {
|
|
|
|
// String[] split = new String(Files.readAllBytes(file.toPath())).split(",");
|
|
|
|
// for (String plugin : split) {
|
|
|
|
// loadPlugin(plugin);
|
|
|
|
// }
|
|
|
|
// } catch (IOException e) {
|
|
|
|
// e.printStackTrace();
|
|
|
|
// }
|
|
|
|
// }
|
2015-03-22 12:43:46 +01:00
|
|
|
List<World> worlds = Bukkit.getWorlds();
|
|
|
|
if (worlds.size() > 0) {
|
|
|
|
UUIDHandler.cacheAll(worlds.get(0).getName());
|
|
|
|
for (World world : worlds) {
|
2015-05-19 18:09:22 +02:00
|
|
|
try {
|
|
|
|
SetGenCB.setGenerator(world);
|
|
|
|
} catch (Exception e) {
|
|
|
|
log("Failed to reload world: " + world.getName());
|
|
|
|
Bukkit.getServer().unloadWorld(world, false);
|
|
|
|
}
|
2015-03-22 12:43:46 +01:00
|
|
|
}
|
|
|
|
}
|
2015-02-19 07:08:15 +01:00
|
|
|
}
|
2015-04-01 10:25:58 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public void onDisable() {
|
2015-07-03 14:15:20 +02:00
|
|
|
PS.get().disable();
|
2015-07-06 11:38:37 +02:00
|
|
|
try {
|
|
|
|
unloadRecursively(this);
|
|
|
|
}
|
2015-07-12 21:08:41 +02:00
|
|
|
catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
};
|
2015-02-19 07:08:15 +01:00
|
|
|
THIS = null;
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public void log(String message) {
|
2015-03-17 09:38:06 +01:00
|
|
|
if (message == null) {
|
|
|
|
return;
|
|
|
|
}
|
2015-02-23 00:12:33 +01:00
|
|
|
message = message.replaceAll("\u00B2", "2");
|
2015-07-06 11:38:37 +02:00
|
|
|
if (THIS != null && Bukkit.getServer().getConsoleSender() != null) {
|
|
|
|
try {
|
|
|
|
message = ChatColor.translateAlternateColorCodes('&', message);
|
|
|
|
if (!Settings.CONSOLE_COLOR) {
|
|
|
|
message = ChatColor.stripColor(message);
|
|
|
|
}
|
|
|
|
Bukkit.getServer().getConsoleSender().sendMessage(message);
|
|
|
|
return;
|
2015-02-19 09:51:10 +01:00
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
catch (Throwable e) {};
|
2015-02-19 09:51:10 +01:00
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
System.out.println(ConsoleColors.fromString(message));
|
2015-02-19 07:08:15 +01:00
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public void disable() {
|
|
|
|
onDisable();
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public String getVersion() {
|
|
|
|
return this.getDescription().getVersion();
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-05-29 08:07:57 +02:00
|
|
|
@Override
|
|
|
|
public void handleKick(UUID uuid, C c) {
|
|
|
|
Player player = Bukkit.getPlayer(uuid);
|
|
|
|
if (player != null && player.isOnline()) {
|
|
|
|
MainUtil.sendMessage(BukkitUtil.getPlayer(player), c);
|
2015-07-02 20:27:15 +02:00
|
|
|
player.teleport(player.getWorld().getSpawnLocation());
|
2015-05-29 08:07:57 +02:00
|
|
|
}
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public void registerCommands() {
|
2015-02-23 02:32:27 +01:00
|
|
|
new MainCommand();
|
2015-07-10 16:08:07 +02:00
|
|
|
MainCommand.subCommands.add(new Download());
|
2015-07-06 11:38:37 +02:00
|
|
|
MainCommand.subCommands.add(new Disable());
|
|
|
|
MainCommand.subCommands.add(new Update());
|
2015-04-26 13:38:29 +02:00
|
|
|
MainCommand.subCommands.add(new Template());
|
|
|
|
MainCommand.subCommands.add(new Setup());
|
|
|
|
MainCommand.subCommands.add(new DebugUUID());
|
2015-04-26 15:38:02 +02:00
|
|
|
MainCommand.subCommands.add(new DebugFill());
|
2015-04-26 13:38:29 +02:00
|
|
|
MainCommand.subCommands.add(new DebugSaveTest());
|
|
|
|
MainCommand.subCommands.add(new DebugLoadTest());
|
|
|
|
MainCommand.subCommands.add(new CreateRoadSchematic());
|
2015-07-15 21:57:11 +02:00
|
|
|
MainCommand.subCommands.add(new DebugAllowUnsafe());
|
2015-04-26 13:38:29 +02:00
|
|
|
MainCommand.subCommands.add(new RegenAllRoads());
|
|
|
|
MainCommand.subCommands.add(new DebugClear());
|
|
|
|
MainCommand.subCommands.add(new Claim());
|
|
|
|
MainCommand.subCommands.add(new Auto());
|
|
|
|
MainCommand.subCommands.add(new Home());
|
|
|
|
MainCommand.subCommands.add(new Visit());
|
|
|
|
MainCommand.subCommands.add(new TP());
|
|
|
|
MainCommand.subCommands.add(new Set());
|
2015-06-05 15:05:17 +02:00
|
|
|
MainCommand.subCommands.add(new Toggle());
|
2015-04-26 13:38:29 +02:00
|
|
|
MainCommand.subCommands.add(new Clear());
|
|
|
|
MainCommand.subCommands.add(new Delete());
|
|
|
|
MainCommand.subCommands.add(new SetOwner());
|
2015-06-08 12:30:46 +02:00
|
|
|
if (Settings.ENABLE_CLUSTERS) {
|
|
|
|
MainCommand.subCommands.add(new Cluster());
|
|
|
|
}
|
2015-05-14 14:55:57 +02:00
|
|
|
MainCommand.subCommands.add(new Trust());
|
|
|
|
MainCommand.subCommands.add(new Add());
|
|
|
|
MainCommand.subCommands.add(new Deny());
|
|
|
|
MainCommand.subCommands.add(new Untrust());
|
|
|
|
MainCommand.subCommands.add(new Remove());
|
|
|
|
MainCommand.subCommands.add(new Undeny());
|
2015-04-26 13:38:29 +02:00
|
|
|
MainCommand.subCommands.add(new Info());
|
|
|
|
MainCommand.subCommands.add(new list());
|
|
|
|
MainCommand.subCommands.add(new Help());
|
|
|
|
MainCommand.subCommands.add(new Debug());
|
|
|
|
MainCommand.subCommands.add(new SchematicCmd());
|
|
|
|
MainCommand.subCommands.add(new plugin());
|
|
|
|
MainCommand.subCommands.add(new Inventory());
|
|
|
|
MainCommand.subCommands.add(new Purge());
|
|
|
|
MainCommand.subCommands.add(new Reload());
|
|
|
|
MainCommand.subCommands.add(new Merge());
|
|
|
|
MainCommand.subCommands.add(new Unlink());
|
|
|
|
MainCommand.subCommands.add(new Kick());
|
|
|
|
MainCommand.subCommands.add(new Rate());
|
|
|
|
MainCommand.subCommands.add(new DebugClaimTest());
|
|
|
|
MainCommand.subCommands.add(new Inbox());
|
|
|
|
MainCommand.subCommands.add(new Comment());
|
|
|
|
MainCommand.subCommands.add(new Database());
|
|
|
|
MainCommand.subCommands.add(new Unclaim());
|
|
|
|
MainCommand.subCommands.add(new Swap());
|
|
|
|
MainCommand.subCommands.add(new MusicSubcommand());
|
|
|
|
MainCommand.subCommands.add(new DebugRoadRegen());
|
|
|
|
MainCommand.subCommands.add(new Trim());
|
|
|
|
MainCommand.subCommands.add(new DebugExec());
|
|
|
|
MainCommand.subCommands.add(new FlagCmd());
|
|
|
|
MainCommand.subCommands.add(new Target());
|
|
|
|
MainCommand.subCommands.add(new DebugFixFlags());
|
|
|
|
MainCommand.subCommands.add(new Move());
|
|
|
|
MainCommand.subCommands.add(new Condense());
|
|
|
|
MainCommand.subCommands.add(new Confirm());
|
|
|
|
MainCommand.subCommands.add(new Copy());
|
2015-05-08 22:58:21 +02:00
|
|
|
MainCommand.subCommands.add(new Chat());
|
2015-02-21 06:48:49 +01:00
|
|
|
final BukkitCommand bcmd = new BukkitCommand();
|
2015-02-19 07:08:15 +01:00
|
|
|
final PluginCommand plotCommand = getCommand("plots");
|
2015-02-21 06:48:49 +01:00
|
|
|
plotCommand.setExecutor(bcmd);
|
2015-02-19 07:08:15 +01:00
|
|
|
plotCommand.setAliases(Arrays.asList("p", "ps", "plotme", "plot"));
|
2015-02-21 06:48:49 +01:00
|
|
|
plotCommand.setTabCompleter(bcmd);
|
2015-02-19 07:08:15 +01:00
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public File getDirectory() {
|
|
|
|
return getDataFolder();
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public TaskManager getTaskManager() {
|
|
|
|
return new BukkitTaskManager();
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-07-14 15:25:01 +02:00
|
|
|
private ArrayDeque<Entity> fastTickEntities;
|
|
|
|
private ArrayDeque<Entity> slowTickEntities;
|
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public void runEntityTask() {
|
2015-07-14 15:25:01 +02:00
|
|
|
// fastTickEntities = new ArrayDeque<>();
|
|
|
|
// slowTickEntities = new ArrayDeque<>();
|
2015-02-19 07:08:15 +01:00
|
|
|
log(C.PREFIX.s() + "KillAllEntities started.");
|
|
|
|
TaskManager.runTaskRepeat(new Runnable() {
|
|
|
|
long ticked = 0l;
|
|
|
|
long error = 0l;
|
2015-02-23 02:32:27 +01:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
if (this.ticked > 36_000L) {
|
|
|
|
this.ticked = 0l;
|
|
|
|
if (this.error > 0) {
|
|
|
|
log(C.PREFIX.s() + "KillAllEntities has been running for 6 hours. Errors: " + this.error);
|
|
|
|
}
|
|
|
|
this.error = 0l;
|
|
|
|
}
|
|
|
|
World world;
|
2015-07-14 15:25:01 +02:00
|
|
|
for (final PlotWorld pw : PS.get().getPlotWorldObjects()) {
|
|
|
|
PlotManager manager = PS.get().getPlotManager(pw.worldname);
|
|
|
|
world = Bukkit.getWorld(pw.worldname);
|
2015-02-19 07:08:15 +01:00
|
|
|
try {
|
2015-07-14 15:25:01 +02:00
|
|
|
for (Entity entity : world.getEntities()) {
|
|
|
|
switch (entity.getType()) {
|
|
|
|
case EGG:
|
|
|
|
case ENDER_CRYSTAL:
|
|
|
|
case COMPLEX_PART:
|
|
|
|
case ARMOR_STAND:
|
|
|
|
case FISHING_HOOK:
|
|
|
|
case ENDER_SIGNAL:
|
|
|
|
case EXPERIENCE_ORB:
|
|
|
|
case LEASH_HITCH:
|
|
|
|
case FIREWORK:
|
|
|
|
case WEATHER:
|
|
|
|
case LIGHTNING:
|
|
|
|
case WITHER_SKULL:
|
|
|
|
case UNKNOWN:
|
|
|
|
case ITEM_FRAME:
|
|
|
|
case PAINTING:
|
|
|
|
case PLAYER: {
|
|
|
|
// non moving / unremovable
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case THROWN_EXP_BOTTLE:
|
|
|
|
case SPLASH_POTION:
|
|
|
|
case SNOWBALL:
|
|
|
|
case ENDER_PEARL:
|
|
|
|
case ARROW: {
|
|
|
|
// managed elsewhere | projectile
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case MINECART:
|
|
|
|
case MINECART_CHEST:
|
|
|
|
case MINECART_COMMAND:
|
|
|
|
case MINECART_FURNACE:
|
|
|
|
case MINECART_HOPPER:
|
|
|
|
case MINECART_MOB_SPAWNER:
|
|
|
|
case MINECART_TNT:
|
|
|
|
case BOAT: {
|
|
|
|
// vehicle
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case SMALL_FIREBALL:
|
|
|
|
case FIREBALL:
|
|
|
|
case DROPPED_ITEM: {
|
|
|
|
// dropped item
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case PRIMED_TNT:
|
|
|
|
case FALLING_BLOCK: {
|
|
|
|
// managed elsewhere
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case BAT:
|
|
|
|
case BLAZE:
|
|
|
|
case CAVE_SPIDER:
|
|
|
|
case CHICKEN:
|
|
|
|
case COW:
|
|
|
|
case CREEPER:
|
|
|
|
case ENDERMAN:
|
|
|
|
case ENDERMITE:
|
|
|
|
case ENDER_DRAGON:
|
|
|
|
case GHAST:
|
|
|
|
case GIANT:
|
|
|
|
case GUARDIAN:
|
|
|
|
case HORSE:
|
|
|
|
case IRON_GOLEM:
|
|
|
|
case MAGMA_CUBE:
|
|
|
|
case MUSHROOM_COW:
|
|
|
|
case OCELOT:
|
|
|
|
case PIG:
|
|
|
|
case PIG_ZOMBIE:
|
|
|
|
case RABBIT:
|
|
|
|
case SHEEP:
|
|
|
|
case SILVERFISH:
|
|
|
|
case SKELETON:
|
|
|
|
case SLIME:
|
|
|
|
case SNOWMAN:
|
|
|
|
case SPIDER:
|
|
|
|
case SQUID:
|
|
|
|
case VILLAGER:
|
|
|
|
case WITCH:
|
|
|
|
case WITHER:
|
|
|
|
case WOLF:
|
|
|
|
case ZOMBIE:
|
|
|
|
default: {
|
|
|
|
Location loc = entity.getLocation();
|
|
|
|
if (manager.getPlotIdAbs(pw, loc.getBlockX(), 0, loc.getBlockZ()) == null) {
|
2015-02-19 07:08:15 +01:00
|
|
|
entity.remove();
|
|
|
|
}
|
2015-07-14 15:25:01 +02:00
|
|
|
break;
|
2015-02-19 07:08:15 +01:00
|
|
|
}
|
|
|
|
}
|
2015-07-14 15:25:01 +02:00
|
|
|
}
|
2015-02-19 07:08:15 +01:00
|
|
|
} catch (final Throwable e) {
|
|
|
|
++this.error;
|
|
|
|
} finally {
|
|
|
|
++this.ticked;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 20);
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
|
|
|
public boolean unloadPlugin(Plugin plugin) {
|
|
|
|
try {
|
|
|
|
plugin.getClass().getClassLoader().getResources("*");
|
|
|
|
} catch (IOException e1) {
|
|
|
|
e1.printStackTrace();
|
|
|
|
}
|
|
|
|
PluginManager pm = Bukkit.getServer().getPluginManager();
|
|
|
|
Map<String, Plugin> ln;
|
|
|
|
List<Plugin> pl;
|
|
|
|
try {
|
|
|
|
Field lnF = pm.getClass().getDeclaredField("lookupNames");
|
|
|
|
lnF.setAccessible(true);
|
|
|
|
ln = (Map) lnF.get(pm);
|
|
|
|
|
|
|
|
Field plF = pm.getClass().getDeclaredField("plugins");
|
|
|
|
plF.setAccessible(true);
|
|
|
|
pl = (List) plF.get(pm);
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
pm.disablePlugin(plugin);
|
|
|
|
synchronized (pm) {
|
|
|
|
ln.remove(plugin.getName());
|
|
|
|
pl.remove(plugin);
|
|
|
|
}
|
|
|
|
JavaPluginLoader jpl = (JavaPluginLoader) plugin.getPluginLoader();
|
|
|
|
Field loadersF = null;
|
|
|
|
try {
|
|
|
|
loadersF = jpl.getClass().getDeclaredField("loaders");
|
|
|
|
loadersF.setAccessible(true);
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
Map<String, ?> loaderMap = (Map) loadersF.get(jpl);
|
|
|
|
loaderMap.remove(plugin.getDescription().getName());
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
closeClassLoader(plugin);
|
|
|
|
System.gc();
|
|
|
|
System.gc();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean closeClassLoader(Plugin plugin) {
|
|
|
|
try {
|
|
|
|
((URLClassLoader) plugin.getClass().getClassLoader()).close();
|
|
|
|
return true;
|
|
|
|
} catch (IOException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean unloadRecursively(Plugin plugin) {
|
|
|
|
try {
|
|
|
|
Stack<String> pluginFiles = unloadRecursively(plugin.getName(), plugin, new Stack());
|
|
|
|
File file = new File(this.getDirectory() + File.separator + "disabled.yml");
|
|
|
|
file.createNewFile();
|
|
|
|
String prefix = "";
|
|
|
|
String all = "";
|
|
|
|
while (pluginFiles.size() > 0) {
|
|
|
|
String pop = pluginFiles.pop();
|
|
|
|
all += prefix + pop.substring(0, pop.length() - 4);
|
|
|
|
prefix = ",";
|
|
|
|
}
|
|
|
|
if (all.length() != 0) {
|
|
|
|
PrintWriter out = new PrintWriter(this.getDirectory() + File.separator + "disabled.yml");
|
|
|
|
out.write(all);
|
|
|
|
out.close();
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void loadPlugin(String name) {
|
|
|
|
try {
|
|
|
|
PluginManager manager = Bukkit.getServer().getPluginManager();
|
|
|
|
Plugin plugin = manager.getPlugin(name);
|
|
|
|
if (plugin != null) {
|
|
|
|
manager.enablePlugin(plugin);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
plugin = manager.loadPlugin(new File("plugins" + File.separator + name + (name.endsWith(".jar") ? "" : ".jar")));
|
|
|
|
plugin.onLoad();
|
|
|
|
manager.enablePlugin(plugin);
|
|
|
|
} catch (Exception e) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public File getFile() {
|
|
|
|
return getFile(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
public File getFile(JavaPlugin p) {
|
|
|
|
try {
|
|
|
|
Field f = JavaPlugin.class.getDeclaredField("file");
|
|
|
|
f.setAccessible(true);
|
|
|
|
return (File) f.get(p);
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Stack<String> unloadRecursively(String doNotLoad, Plugin plugin, Stack<String> pluginFiles) {
|
|
|
|
if (!plugin.getName().equals(doNotLoad)) {
|
|
|
|
File file = getFile((JavaPlugin) plugin);
|
|
|
|
pluginFiles.push(file.getName());
|
|
|
|
}
|
|
|
|
PluginManager pm = Bukkit.getPluginManager();
|
|
|
|
for (Plugin p : pm.getPlugins()) {
|
|
|
|
List<String> depend = p.getDescription().getDepend();
|
|
|
|
if (depend != null) {
|
|
|
|
for (String s : depend) {
|
|
|
|
if (s.equals(plugin.getName())) {
|
|
|
|
unloadRecursively(doNotLoad, p, pluginFiles);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
List<String> softDepend = p.getDescription().getSoftDepend();
|
|
|
|
if (softDepend != null) {
|
|
|
|
for (String s : softDepend) {
|
|
|
|
if (s.equals(plugin.getName())) {
|
|
|
|
unloadRecursively(doNotLoad, p, pluginFiles);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (unloadPlugin(plugin)) {
|
|
|
|
List<String> depend = plugin.getDescription().getDepend();
|
|
|
|
if (depend != null) {
|
|
|
|
for (String s : depend) {
|
|
|
|
Plugin p = pm.getPlugin(s);
|
|
|
|
if (p != null) {
|
|
|
|
unloadRecursively(doNotLoad, p, pluginFiles);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
List<String> softDepend = plugin.getDescription().getSoftDepend();
|
|
|
|
if (softDepend != null) {
|
|
|
|
for (String s : softDepend) {
|
|
|
|
Plugin p = pm.getPlugin(s);
|
|
|
|
if (p != null) {
|
|
|
|
unloadRecursively(doNotLoad, p, pluginFiles);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pluginFiles;
|
|
|
|
}
|
|
|
|
|
2015-02-19 09:51:10 +01:00
|
|
|
@Override
|
|
|
|
final public ChunkGenerator getDefaultWorldGenerator(final String world, final String id) {
|
2015-05-04 15:53:24 +02:00
|
|
|
WorldEvents.lastWorld = world;
|
2015-07-03 14:15:20 +02:00
|
|
|
if (!PS.get().setupPlotWorld(world, id)) {
|
2015-02-19 09:51:10 +01:00
|
|
|
return null;
|
|
|
|
}
|
2015-05-09 08:24:03 +02:00
|
|
|
HybridGen result = new HybridGen(world);
|
2015-05-04 15:53:24 +02:00
|
|
|
TaskManager.runTaskLater(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
if (WorldEvents.lastWorld != null && WorldEvents.lastWorld.equals(world)) {
|
|
|
|
WorldEvents.lastWorld = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 20);
|
|
|
|
return result;
|
2015-02-19 09:51:10 +01:00
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public void registerPlayerEvents() {
|
|
|
|
getServer().getPluginManager().registerEvents(new PlayerEvents(), this);
|
|
|
|
if (checkVersion(1, 8, 0)) {
|
|
|
|
getServer().getPluginManager().registerEvents(new PlayerEvents_1_8(), this);
|
|
|
|
}
|
2015-05-13 17:49:57 +02:00
|
|
|
if (checkVersion(1, 8, 3)) {
|
|
|
|
getServer().getPluginManager().registerEvents(new PlayerEvents_1_8_3(), this);
|
|
|
|
}
|
2015-02-19 07:08:15 +01:00
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public void registerInventoryEvents() {
|
|
|
|
getServer().getPluginManager().registerEvents(new InventoryListener(), this);
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public void registerPlotPlusEvents() {
|
|
|
|
PlotPlusListener.startRunnable(this);
|
|
|
|
getServer().getPluginManager().registerEvents(new PlotPlusListener(), this);
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public void registerForceFieldEvents() {
|
|
|
|
getServer().getPluginManager().registerEvents(new ForceFieldListener(), this);
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
|
|
|
public void registerWorldEditEvents() {
|
|
|
|
if (getServer().getPluginManager().getPlugin("WorldEdit") != null) {
|
2015-07-03 14:15:20 +02:00
|
|
|
PS.get().worldEdit = (WorldEditPlugin) getServer().getPluginManager().getPlugin("WorldEdit");
|
|
|
|
final String version = PS.get().worldEdit.getDescription().getVersion();
|
2015-02-19 07:08:15 +01:00
|
|
|
if ((version != null) && version.startsWith("5.")) {
|
|
|
|
log("&cThis version of WorldEdit does not support PlotSquared.");
|
|
|
|
log("&cPlease use WorldEdit 6+ for masking support");
|
|
|
|
log("&c - http://builds.enginehub.org/job/worldedit");
|
|
|
|
} else {
|
2015-04-18 15:47:13 +02:00
|
|
|
getServer().getPluginManager().registerEvents(new WEListener(), this);
|
|
|
|
WorldEdit.getInstance().getEventBus().register(new WESubscriber());
|
2015-02-19 07:08:15 +01:00
|
|
|
MainCommand.subCommands.add(new WE_Anywhere());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 07:08:15 +01:00
|
|
|
@Override
|
2015-06-05 14:39:31 +02:00
|
|
|
public EconHandler getEconomyHandler() {
|
2015-06-07 21:37:40 +02:00
|
|
|
try {
|
|
|
|
BukkitEconHandler econ = new BukkitEconHandler();
|
|
|
|
if (econ.init()) {
|
|
|
|
return econ;
|
|
|
|
}
|
2015-07-03 11:30:26 +02:00
|
|
|
} catch (Throwable e) {
|
2015-02-19 07:08:15 +01:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 09:51:10 +01:00
|
|
|
@Override
|
2015-02-22 14:20:41 +01:00
|
|
|
public BlockManager initBlockManager() {
|
2015-02-19 09:51:10 +01:00
|
|
|
if (checkVersion(1, 8, 0)) {
|
|
|
|
try {
|
2015-02-23 06:29:45 +01:00
|
|
|
BukkitSetBlockManager.setBlockManager = new SetBlockFast_1_8();
|
2015-02-20 07:34:19 +01:00
|
|
|
} catch (final Throwable e) {
|
2015-02-19 09:51:10 +01:00
|
|
|
e.printStackTrace();
|
2015-02-23 06:29:45 +01:00
|
|
|
BukkitSetBlockManager.setBlockManager = new SetBlockSlow();
|
2015-02-19 09:51:10 +01:00
|
|
|
}
|
2015-06-09 22:00:53 +02:00
|
|
|
try {
|
|
|
|
new SendChunk();
|
|
|
|
MainUtil.canSendChunk = true;
|
|
|
|
} catch (final Throwable e) {
|
|
|
|
MainUtil.canSendChunk = false;
|
|
|
|
}
|
2015-02-20 07:34:19 +01:00
|
|
|
} else {
|
2015-02-19 09:51:10 +01:00
|
|
|
try {
|
2015-02-23 06:29:45 +01:00
|
|
|
BukkitSetBlockManager.setBlockManager = new SetBlockFast();
|
2015-02-20 07:34:19 +01:00
|
|
|
} catch (final Throwable e) {
|
2015-03-18 06:50:07 +01:00
|
|
|
MainUtil.canSetFast = false;
|
2015-02-23 06:29:45 +01:00
|
|
|
BukkitSetBlockManager.setBlockManager = new SetBlockSlow();
|
2015-02-19 09:51:10 +01:00
|
|
|
}
|
|
|
|
}
|
2015-02-23 06:29:45 +01:00
|
|
|
BlockUpdateUtil.setBlockManager = BukkitSetBlockManager.setBlockManager;
|
2015-02-22 14:20:41 +01:00
|
|
|
return BlockManager.manager = new BukkitUtil();
|
2015-02-19 09:51:10 +01:00
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 09:51:10 +01:00
|
|
|
@Override
|
|
|
|
public boolean initPlotMeConverter() {
|
2015-05-01 13:00:17 +02:00
|
|
|
TaskManager.runTaskLaterAsync(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2015-07-09 06:19:49 +02:00
|
|
|
if (new LikePlotMeConverter("PlotMe").run(new ClassicPlotMeConnector())) return;
|
|
|
|
if (new LikePlotMeConverter("PlotMe").run(new PlotMeConnector_017())) return;
|
|
|
|
if (new LikePlotMeConverter("AthionPlots").run(new ClassicPlotMeConnector())) return;
|
2015-05-01 13:00:17 +02:00
|
|
|
}
|
|
|
|
}, 20);
|
2015-07-03 11:30:26 +02:00
|
|
|
return Bukkit.getPluginManager().getPlugin("PlotMe") != null || Bukkit.getPluginManager().getPlugin("AthionPlots") != null;
|
2015-02-19 09:51:10 +01:00
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-19 09:51:10 +01:00
|
|
|
@Override
|
2015-02-26 10:27:49 +01:00
|
|
|
public ChunkGenerator getGenerator(final String world, final String name) {
|
2015-02-20 07:34:19 +01:00
|
|
|
final Plugin gen_plugin = Bukkit.getPluginManager().getPlugin(name);
|
|
|
|
if ((gen_plugin != null) && gen_plugin.isEnabled()) {
|
2015-02-26 10:27:49 +01:00
|
|
|
return gen_plugin.getDefaultWorldGenerator(world, "");
|
2015-02-19 09:51:10 +01:00
|
|
|
} else {
|
2015-05-09 08:24:03 +02:00
|
|
|
return new HybridGen(world);
|
2015-02-19 09:51:10 +01:00
|
|
|
}
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-22 14:20:41 +01:00
|
|
|
@Override
|
|
|
|
public HybridUtils initHybridUtils() {
|
|
|
|
return new BukkitHybridUtils();
|
|
|
|
}
|
2015-02-23 02:32:27 +01:00
|
|
|
|
2015-02-22 14:20:41 +01:00
|
|
|
@Override
|
|
|
|
public SetupUtils initSetupUtils() {
|
|
|
|
return new BukkitSetupUtils();
|
|
|
|
}
|
2015-02-23 02:32:27 +01:00
|
|
|
|
2015-02-23 00:12:33 +01:00
|
|
|
@Override
|
|
|
|
public UUIDWrapper initUUIDHandler() {
|
2015-02-23 02:32:27 +01:00
|
|
|
final boolean checkVersion = checkVersion(1, 7, 6);
|
2015-03-13 04:15:00 +01:00
|
|
|
if (Settings.OFFLINE_MODE) {
|
2015-04-12 07:24:54 +02:00
|
|
|
if (Settings.UUID_LOWERCASE) {
|
|
|
|
UUIDHandler.uuidWrapper = new LowerOfflineUUIDWrapper();
|
2015-07-06 11:38:37 +02:00
|
|
|
} else {
|
2015-04-12 07:24:54 +02:00
|
|
|
UUIDHandler.uuidWrapper = new OfflineUUIDWrapper();
|
|
|
|
}
|
2015-02-23 00:12:33 +01:00
|
|
|
Settings.OFFLINE_MODE = true;
|
2015-02-23 02:32:27 +01:00
|
|
|
} else if (checkVersion) {
|
2015-02-23 00:12:33 +01:00
|
|
|
UUIDHandler.uuidWrapper = new DefaultUUIDWrapper();
|
|
|
|
Settings.OFFLINE_MODE = false;
|
2015-02-23 02:32:27 +01:00
|
|
|
} else {
|
2015-04-12 07:24:54 +02:00
|
|
|
if (Settings.UUID_LOWERCASE) {
|
|
|
|
UUIDHandler.uuidWrapper = new LowerOfflineUUIDWrapper();
|
2015-07-06 11:38:37 +02:00
|
|
|
} else {
|
2015-04-12 07:24:54 +02:00
|
|
|
UUIDHandler.uuidWrapper = new OfflineUUIDWrapper();
|
|
|
|
}
|
2015-02-23 00:12:33 +01:00
|
|
|
Settings.OFFLINE_MODE = true;
|
|
|
|
}
|
2015-05-02 12:08:30 +02:00
|
|
|
if (!checkVersion) {
|
|
|
|
log(C.PREFIX.s() + " &c[WARN] Titles are disabled - please update your version of Bukkit to support this feature.");
|
|
|
|
Settings.TITLES = false;
|
|
|
|
FlagManager.removeFlag(FlagManager.getFlag("titles"));
|
|
|
|
} else {
|
|
|
|
AbstractTitle.TITLE_CLASS = new DefaultTitle();
|
|
|
|
if (UUIDHandler.uuidWrapper instanceof DefaultUUIDWrapper) {
|
|
|
|
Settings.TWIN_MODE_UUID = true;
|
2015-07-06 11:38:37 +02:00
|
|
|
} else if (UUIDHandler.uuidWrapper instanceof OfflineUUIDWrapper && !Bukkit.getOnlineMode()) {
|
2015-05-02 12:08:30 +02:00
|
|
|
Settings.TWIN_MODE_UUID = true;
|
|
|
|
}
|
|
|
|
}
|
2015-02-23 00:12:33 +01:00
|
|
|
if (Settings.OFFLINE_MODE) {
|
2015-02-23 02:32:27 +01:00
|
|
|
log(C.PREFIX.s() + " &6PlotSquared is using Offline Mode UUIDs either because of user preference, or because you are using an old version of Bukkit");
|
|
|
|
} else {
|
|
|
|
log(C.PREFIX.s() + " &6PlotSquared is using online UUIDs");
|
2015-02-23 00:12:33 +01:00
|
|
|
}
|
|
|
|
return UUIDHandler.uuidWrapper;
|
|
|
|
}
|
2015-02-23 02:32:27 +01:00
|
|
|
|
2015-02-23 01:05:25 +01:00
|
|
|
@Override
|
2015-02-23 06:29:45 +01:00
|
|
|
public ChunkManager initChunkManager() {
|
|
|
|
return new BukkitChunkManager();
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-02-23 06:29:45 +01:00
|
|
|
@Override
|
|
|
|
public EventUtil initEventUtil() {
|
|
|
|
return new BukkitEventUtil();
|
2015-02-23 01:05:25 +01:00
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-04-01 10:25:58 +02:00
|
|
|
@Override
|
|
|
|
public void registerTNTListener() {
|
|
|
|
getServer().getPluginManager().registerEvents(new TNTListener(), this);
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-04-09 07:41:14 +02:00
|
|
|
@Override
|
|
|
|
public void unregister(PlotPlayer player) {
|
|
|
|
BukkitUtil.removePlayer(player.getName());
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-04-26 08:29:58 +02:00
|
|
|
@Override
|
|
|
|
public APlotListener initPlotListener() {
|
|
|
|
return new PlotListener();
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-04-26 08:29:58 +02:00
|
|
|
@Override
|
|
|
|
public void registerChunkProcessor() {
|
|
|
|
getServer().getPluginManager().registerEvents(new ChunkListener(), this);
|
|
|
|
}
|
2015-06-05 16:08:16 +02:00
|
|
|
|
2015-04-26 08:29:58 +02:00
|
|
|
@Override
|
|
|
|
public void registerWorldEvents() {
|
|
|
|
getServer().getPluginManager().registerEvents(new WorldEvents(), this);
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-04-27 11:07:42 +02:00
|
|
|
@Override
|
|
|
|
public PlayerManager initPlayerManager() {
|
|
|
|
return new BukkitPlayerManager();
|
|
|
|
}
|
2015-07-06 11:38:37 +02:00
|
|
|
|
2015-07-03 04:11:41 +02:00
|
|
|
@Override
|
|
|
|
public InventoryUtil initInventoryUtil() {
|
|
|
|
return new BukkitInventoryUtil();
|
|
|
|
}
|
2015-02-19 04:24:05 +01:00
|
|
|
}
|