mirror of
https://gitlab.com/phoenix-dvpmt/mmocore.git
synced 2024-11-24 00:15:16 +01:00
removed Carson
This commit is contained in:
parent
2d73f38fca
commit
8405e82eb1
@ -2,6 +2,7 @@ package net.Indyuce.mmocore;
|
|||||||
|
|
||||||
import io.lumine.mythic.lib.comp.Metrics;
|
import io.lumine.mythic.lib.comp.Metrics;
|
||||||
import io.lumine.mythic.lib.version.SpigotPlugin;
|
import io.lumine.mythic.lib.version.SpigotPlugin;
|
||||||
|
import io.lumine.mythic.utils.plugin.LuminePlugin;
|
||||||
import net.Indyuce.mmocore.api.ConfigFile;
|
import net.Indyuce.mmocore.api.ConfigFile;
|
||||||
import net.Indyuce.mmocore.api.PlayerActionBar;
|
import net.Indyuce.mmocore.api.PlayerActionBar;
|
||||||
import net.Indyuce.mmocore.api.loot.LootChest;
|
import net.Indyuce.mmocore.api.loot.LootChest;
|
||||||
@ -62,7 +63,7 @@ import java.lang.reflect.Field;
|
|||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
|
|
||||||
public class MMOCore extends JavaPlugin {
|
public class MMOCore extends LuminePlugin {
|
||||||
public static MMOCore plugin;
|
public static MMOCore plugin;
|
||||||
|
|
||||||
public ConfigManager configManager;
|
public ConfigManager configManager;
|
||||||
@ -103,7 +104,7 @@ public class MMOCore extends JavaPlugin {
|
|||||||
|
|
||||||
public boolean shouldDebugSQL = false;
|
public boolean shouldDebugSQL = false;
|
||||||
|
|
||||||
public void onLoad() {
|
public void load() {
|
||||||
plugin = this;
|
plugin = this;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -127,7 +128,7 @@ public class MMOCore extends JavaPlugin {
|
|||||||
if (Bukkit.getPluginManager().getPlugin("WorldGuard") != null) flagPlugin = new WorldGuardFlags();
|
if (Bukkit.getPluginManager().getPlugin("WorldGuard") != null) flagPlugin = new WorldGuardFlags();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onEnable() {
|
public void enable() {
|
||||||
new SpigotPlugin(70575, this).checkForUpdate();
|
new SpigotPlugin(70575, this).checkForUpdate();
|
||||||
new Metrics(this);
|
new Metrics(this);
|
||||||
saveDefaultConfig();
|
saveDefaultConfig();
|
||||||
@ -329,7 +330,7 @@ public class MMOCore extends JavaPlugin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onDisable() {
|
public void disable() {
|
||||||
for (PlayerData data : PlayerData.getAll()) {
|
for (PlayerData data : PlayerData.getAll()) {
|
||||||
if(!data.isFullyLoaded()) return;
|
if(!data.isFullyLoaded()) return;
|
||||||
data.getQuestData().resetBossBar();
|
data.getQuestData().resetBossBar();
|
||||||
|
Loading…
Reference in New Issue
Block a user