mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2025-02-11 11:40:40 +00:00
Merge pull request #169 from jacklin213/bugfix
[BUGFIX] Remove extra code, Update reloadPlugin(), stopPlugin()
This commit is contained in:
commit
94bd3bae9a
5 changed files with 25 additions and 13 deletions
|
@ -20,7 +20,7 @@ public class DBConnection {
|
||||||
sql = new MySQL(ProjectKorra.log, "[ProjectKorra] Establishing MySQL Connection...", host, port, user, pass, db);
|
sql = new MySQL(ProjectKorra.log, "[ProjectKorra] Establishing MySQL Connection...", host, port, user, pass, db);
|
||||||
if (((MySQL) sql).open() == null) {
|
if (((MySQL) sql).open() == null) {
|
||||||
ProjectKorra.log.severe("Disabling due to database error");
|
ProjectKorra.log.severe("Disabling due to database error");
|
||||||
ProjectKorra.plugin.stopPlugin();
|
GeneralMethods.stopPlugin();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ public class DBConnection {
|
||||||
sql = new SQLite(ProjectKorra.log, "[ProjectKorra] Establishing SQLite Connection.", "projectkorra.db", ProjectKorra.plugin.getDataFolder().getAbsolutePath());
|
sql = new SQLite(ProjectKorra.log, "[ProjectKorra] Establishing SQLite Connection.", "projectkorra.db", ProjectKorra.plugin.getDataFolder().getAbsolutePath());
|
||||||
if (((SQLite) sql).open() == null) {
|
if (((SQLite) sql).open() == null) {
|
||||||
ProjectKorra.log.severe("Disabling due to database error");
|
ProjectKorra.log.severe("Disabling due to database error");
|
||||||
ProjectKorra.plugin.stopPlugin();
|
GeneralMethods.stopPlugin();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -83,8 +83,10 @@ import com.projectkorra.ProjectKorra.Ability.AbilityModuleManager;
|
||||||
import com.projectkorra.ProjectKorra.Ability.StockAbilities;
|
import com.projectkorra.ProjectKorra.Ability.StockAbilities;
|
||||||
import com.projectkorra.ProjectKorra.Ability.Combo.ComboAbilityModule;
|
import com.projectkorra.ProjectKorra.Ability.Combo.ComboAbilityModule;
|
||||||
import com.projectkorra.ProjectKorra.Ability.Combo.ComboModuleManager;
|
import com.projectkorra.ProjectKorra.Ability.Combo.ComboModuleManager;
|
||||||
|
import com.projectkorra.ProjectKorra.Ability.MultiAbility.MultiAbilityModuleManager;
|
||||||
import com.projectkorra.ProjectKorra.CustomEvents.BendingReloadEvent;
|
import com.projectkorra.ProjectKorra.CustomEvents.BendingReloadEvent;
|
||||||
import com.projectkorra.ProjectKorra.CustomEvents.PlayerBendingDeathEvent;
|
import com.projectkorra.ProjectKorra.CustomEvents.PlayerBendingDeathEvent;
|
||||||
|
import com.projectkorra.ProjectKorra.Objects.Preset;
|
||||||
import com.projectkorra.ProjectKorra.Utilities.ParticleEffect;
|
import com.projectkorra.ProjectKorra.Utilities.ParticleEffect;
|
||||||
import com.projectkorra.ProjectKorra.airbending.AirCombo;
|
import com.projectkorra.ProjectKorra.airbending.AirCombo;
|
||||||
import com.projectkorra.ProjectKorra.airbending.AirMethods;
|
import com.projectkorra.ProjectKorra.airbending.AirMethods;
|
||||||
|
@ -1437,22 +1439,33 @@ public class GeneralMethods {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void reloadPlugin() {
|
public static void reloadPlugin() {
|
||||||
DBConnection.sql.close();
|
ProjectKorra.log.info("Reloading ProjectKorra and configuration");
|
||||||
ConfigManager.defaultConfig.reloadConfig();
|
|
||||||
ConfigManager.deathMsgConfig.reloadConfig();
|
|
||||||
GeneralMethods.stopBending();
|
|
||||||
BendingReloadEvent event = new BendingReloadEvent();
|
BendingReloadEvent event = new BendingReloadEvent();
|
||||||
Bukkit.getServer().getPluginManager().callEvent(event);
|
Bukkit.getServer().getPluginManager().callEvent(event);
|
||||||
|
if (DBConnection.isOpen != false) {
|
||||||
|
DBConnection.sql.close();
|
||||||
|
}
|
||||||
|
GeneralMethods.stopBending();
|
||||||
|
ConfigManager.defaultConfig.reloadConfig();
|
||||||
|
ConfigManager.deathMsgConfig.reloadConfig();
|
||||||
new AbilityModuleManager(plugin);
|
new AbilityModuleManager(plugin);
|
||||||
|
new MultiAbilityModuleManager();
|
||||||
DBConnection.host = plugin.getConfig().getString("Storage.MySQL.host");
|
DBConnection.host = plugin.getConfig().getString("Storage.MySQL.host");
|
||||||
DBConnection.port = plugin.getConfig().getInt("Storage.MySQL.port");
|
DBConnection.port = plugin.getConfig().getInt("Storage.MySQL.port");
|
||||||
DBConnection.pass = plugin.getConfig().getString("Storage.MySQL.pass");
|
DBConnection.pass = plugin.getConfig().getString("Storage.MySQL.pass");
|
||||||
DBConnection.db = plugin.getConfig().getString("Storage.MySQL.db");
|
DBConnection.db = plugin.getConfig().getString("Storage.MySQL.db");
|
||||||
DBConnection.user = plugin.getConfig().getString("Storage.MySQL.user");
|
DBConnection.user = plugin.getConfig().getString("Storage.MySQL.user");
|
||||||
DBConnection.init();
|
DBConnection.init();
|
||||||
|
if (DBConnection.isOpen() == false) {
|
||||||
|
ProjectKorra.log.severe("Unable to enable ProjectKorra due to the database not being open");
|
||||||
|
stopPlugin();
|
||||||
|
}
|
||||||
for (Player player: Bukkit.getOnlinePlayers()) {
|
for (Player player: Bukkit.getOnlinePlayers()) {
|
||||||
GeneralMethods.createBendingPlayer(player.getUniqueId(), player.getName());
|
GeneralMethods.createBendingPlayer(player.getUniqueId(), player.getName());
|
||||||
|
Preset.loadPresets(player);
|
||||||
}
|
}
|
||||||
|
plugin.updater.checkUpdate();
|
||||||
|
ProjectKorra.log.info("Reload complete");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void removeBlock(Block block) {
|
public static void removeBlock(Block block) {
|
||||||
|
@ -1691,6 +1704,10 @@ public class GeneralMethods {
|
||||||
TempBlock.removeAll();
|
TempBlock.removeAll();
|
||||||
MultiAbilityManager.removeAll();
|
MultiAbilityManager.removeAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void stopPlugin() {
|
||||||
|
plugin.getServer().getPluginManager().disablePlugin(plugin);
|
||||||
|
}
|
||||||
|
|
||||||
public static void writeToDebug(String message) {
|
public static void writeToDebug(String message) {
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -64,7 +64,7 @@ public class ProjectKorra extends JavaPlugin {
|
||||||
DBConnection.user = getConfig().getString("Storage.MySQL.user");
|
DBConnection.user = getConfig().getString("Storage.MySQL.user");
|
||||||
DBConnection.init();
|
DBConnection.init();
|
||||||
if (DBConnection.isOpen() == false) {
|
if (DBConnection.isOpen() == false) {
|
||||||
//TODO: Log a proper message displaying database problem, pk will not function
|
//Message is logged by DBConnection
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -103,7 +103,4 @@ public class ProjectKorra extends JavaPlugin {
|
||||||
handler.close();
|
handler.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void stopPlugin() {
|
|
||||||
getServer().getPluginManager().disablePlugin(plugin);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,7 +75,7 @@ public class Updater {
|
||||||
plugin.getLogger().info("You are running version " + getCurrentVersion());
|
plugin.getLogger().info("You are running version " + getCurrentVersion());
|
||||||
plugin.getLogger().info("The latest version avaliable is " + getUpdateVersion());
|
plugin.getLogger().info("The latest version avaliable is " + getUpdateVersion());
|
||||||
} else {
|
} else {
|
||||||
plugin.getLogger().info("You are running the latest version of" + pluginName);
|
plugin.getLogger().info("You are running the latest version of " + pluginName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -67,7 +67,6 @@ public class ConfigManager {
|
||||||
config.addDefault("Chi.RapidPunch", "{victim} took all the hits against {attacker}'s {ability}");
|
config.addDefault("Chi.RapidPunch", "{victim} took all the hits against {attacker}'s {ability}");
|
||||||
config.addDefault("Chi.ChiCombo", "{victim} was overwhelmed by {attacker}'s skill {ability}");
|
config.addDefault("Chi.ChiCombo", "{victim} was overwhelmed by {attacker}'s skill {ability}");
|
||||||
|
|
||||||
config.options().copyDefaults(true);
|
|
||||||
deathMsgConfig.saveConfig();
|
deathMsgConfig.saveConfig();
|
||||||
break;
|
break;
|
||||||
case DEFAULT:
|
case DEFAULT:
|
||||||
|
@ -912,7 +911,6 @@ public class ConfigManager {
|
||||||
|
|
||||||
config.addDefault("debug", false);
|
config.addDefault("debug", false);
|
||||||
|
|
||||||
config.options().copyDefaults(true);
|
|
||||||
defaultConfig.saveConfig();
|
defaultConfig.saveConfig();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue