forked from Upstream/mmocore
Merge branch 'master' into Ricardo
# Conflicts: # src/main/java/net/Indyuce/mmocore/api/player/PlayerData.java
This commit is contained in:
commit
b8f8dbf419
6
pom.xml
6
pom.xml
@ -4,9 +4,9 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>net.Indyuce</groupId>
|
||||
<artifactId>MMOCore</artifactId>
|
||||
<version>1.6.2</version>
|
||||
<version>1.7.0</version>
|
||||
<name>MMOCore</name>
|
||||
<description>Offer your players a brand new RPG experience.</description>
|
||||
<description>Offer your players a brand new RPG experience!</description>
|
||||
|
||||
<properties>
|
||||
<downloadSources>false</downloadSources>
|
||||
@ -122,7 +122,7 @@
|
||||
<dependency>
|
||||
<groupId>io.lumine</groupId>
|
||||
<artifactId>MythicLib</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<version>1.0.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
|
@ -2,6 +2,7 @@ package net.Indyuce.mmocore;
|
||||
|
||||
import io.lumine.mythic.lib.comp.Metrics;
|
||||
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.PlayerActionBar;
|
||||
import net.Indyuce.mmocore.api.loot.LootChest;
|
||||
@ -62,7 +63,7 @@ import java.lang.reflect.Field;
|
||||
import java.util.HashSet;
|
||||
import java.util.logging.Level;
|
||||
|
||||
public class MMOCore extends JavaPlugin {
|
||||
public class MMOCore extends LuminePlugin {
|
||||
public static MMOCore plugin;
|
||||
|
||||
public ConfigManager configManager;
|
||||
@ -103,7 +104,7 @@ public class MMOCore extends JavaPlugin {
|
||||
|
||||
public boolean shouldDebugSQL = false;
|
||||
|
||||
public void onLoad() {
|
||||
public void load() {
|
||||
plugin = this;
|
||||
|
||||
/*
|
||||
@ -127,7 +128,7 @@ public class MMOCore extends JavaPlugin {
|
||||
if (Bukkit.getPluginManager().getPlugin("WorldGuard") != null) flagPlugin = new WorldGuardFlags();
|
||||
}
|
||||
|
||||
public void onEnable() {
|
||||
public void enable() {
|
||||
new SpigotPlugin(70575, this).checkForUpdate();
|
||||
new Metrics(this);
|
||||
saveDefaultConfig();
|
||||
@ -329,7 +330,7 @@ public class MMOCore extends JavaPlugin {
|
||||
}
|
||||
}
|
||||
|
||||
public void onDisable() {
|
||||
public void disable() {
|
||||
for (PlayerData data : PlayerData.getAll()) {
|
||||
if(!data.isFullyLoaded()) return;
|
||||
data.getQuestData().resetBossBar();
|
||||
|
Loading…
Reference in New Issue
Block a user