diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2022-01-01 22:46:37 -0700 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2022-01-01 22:46:37 -0700 |
commit | 661222bd3681d65178933892c7fe688b2bcff8e3 (patch) | |
tree | fe1275da92fee29a88f79645a431851257945d27 | |
parent | 95166d5f10abec2fe6bd098f70316660fa1b775e (diff) | |
download | resurrection-661222bd3681d65178933892c7fe688b2bcff8e3.tar resurrection-661222bd3681d65178933892c7fe688b2bcff8e3.tar.gz resurrection-661222bd3681d65178933892c7fe688b2bcff8e3.tar.bz2 |
cleaning up some things
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | lib/gson-2.8.7.jar | bin | 240400 -> 0 bytes | |||
-rw-r--r-- | lib/spigot-api-1.16.5-R0.1-20210524.223338-87.jar | bin | 1307220 -> 0 bytes | |||
-rw-r--r-- | src/net/brysonsteck/Resurrection/commands/CommandSource.java | 4 | ||||
-rw-r--r-- | src/net/brysonsteck/Resurrection/player/PlayerData.java | 2 | ||||
-rw-r--r-- | src/net/brysonsteck/Resurrection/player/PlayerListener.java | 2 | ||||
-rw-r--r-- | src/net/brysonsteck/Resurrection/startup/ParseSettings.java | 4 |
7 files changed, 5 insertions, 9 deletions
@@ -2,4 +2,4 @@ out/production/ Resurrection.iml data/resurrection bukkit.png - +lib/ diff --git a/lib/gson-2.8.7.jar b/lib/gson-2.8.7.jar Binary files differdeleted file mode 100644 index 215e823..0000000 --- a/lib/gson-2.8.7.jar +++ /dev/null diff --git a/lib/spigot-api-1.16.5-R0.1-20210524.223338-87.jar b/lib/spigot-api-1.16.5-R0.1-20210524.223338-87.jar Binary files differdeleted file mode 100644 index 75fba07..0000000 --- a/lib/spigot-api-1.16.5-R0.1-20210524.223338-87.jar +++ /dev/null diff --git a/src/net/brysonsteck/Resurrection/commands/CommandSource.java b/src/net/brysonsteck/Resurrection/commands/CommandSource.java index 5ac7666..31481e8 100644 --- a/src/net/brysonsteck/Resurrection/commands/CommandSource.java +++ b/src/net/brysonsteck/Resurrection/commands/CommandSource.java @@ -1,14 +1,12 @@ package net.brysonsteck.Resurrection.commands; -import net.brysonsteck.Resurrection.Resurrection; import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; -import org.bukkit.plugin.java.JavaPlugin; -import org.bukkit.scheduler.BukkitRunnable; + public class CommandSource implements CommandExecutor { boolean DEBUG; diff --git a/src/net/brysonsteck/Resurrection/player/PlayerData.java b/src/net/brysonsteck/Resurrection/player/PlayerData.java index d663c8e..89df20f 100644 --- a/src/net/brysonsteck/Resurrection/player/PlayerData.java +++ b/src/net/brysonsteck/Resurrection/player/PlayerData.java @@ -61,10 +61,10 @@ public class PlayerData { playerHash.put("timeLeft", playerData[2]); this.playerData.put(playerData[0], playerHash); if (DEBUG) { - TimeCheck timeCheck = new TimeCheck(Long.parseLong(playerData[2])); Bukkit.broadcastMessage(ChatColor.YELLOW +""+ ChatColor.BOLD + "[Res. DEBUG]: player: " + playerData[0].replaceFirst(";","") + " | dead: " + playerData[1] + " | ms to resurrect at: " + playerData[2]); } } + reader.close(); } catch (IOException e) { if (DEBUG) { Bukkit.broadcastMessage(ChatColor.YELLOW +""+ ChatColor.BOLD + "[Res. DEBUG]: Error occurred while trying to read player data. Resurrection is shutting down"); diff --git a/src/net/brysonsteck/Resurrection/player/PlayerListener.java b/src/net/brysonsteck/Resurrection/player/PlayerListener.java index 6971f84..9a445e4 100644 --- a/src/net/brysonsteck/Resurrection/player/PlayerListener.java +++ b/src/net/brysonsteck/Resurrection/player/PlayerListener.java @@ -15,8 +15,6 @@ import org.bukkit.potion.PotionEffect; import org.bukkit.potion.PotionEffectType; import org.bukkit.scheduler.BukkitRunnable; -import java.util.Hashtable; - public class PlayerListener implements Listener { boolean stillDead; diff --git a/src/net/brysonsteck/Resurrection/startup/ParseSettings.java b/src/net/brysonsteck/Resurrection/startup/ParseSettings.java index d76b657..75d24a6 100644 --- a/src/net/brysonsteck/Resurrection/startup/ParseSettings.java +++ b/src/net/brysonsteck/Resurrection/startup/ParseSettings.java @@ -6,7 +6,6 @@ import org.bukkit.plugin.java.JavaPlugin; import java.io.*; import java.util.Hashtable; -import java.util.Locale; public class ParseSettings { Hashtable<String, String> settings = new Hashtable<>(); @@ -42,6 +41,7 @@ public class ParseSettings { settings.put(setting[0], setting[1]); } } + reader.close(); if (!verifySettings()) { System.out.println("[Resurrection] There is a syntax issue inside the Settings file:"); if (!settingsComplete) { @@ -81,7 +81,7 @@ public class ParseSettings { // is resurrection_time a long? try { - long time = Long.parseLong(settings.get("resurrection_time")); + Long.parseLong(settings.get("resurrection_time")); } catch (NumberFormatException | NullPointerException e) { failedSetting = "resurrection_time"; return false; |