1
0
mirror of https://github.com/BentoBoxWorld/Warps.git synced 2024-11-29 14:15:23 +01:00

Check for warp file before loading

This commit is contained in:
tastybento 2019-01-29 14:04:56 -08:00
parent 2bf5299a16
commit da996714a1

View File

@ -163,7 +163,9 @@ public class WarpSignsManager {
private void loadWarpList() { private void loadWarpList() {
addon.getLogger().info("Loading warps..."); addon.getLogger().info("Loading warps...");
worldsWarpList = new HashMap<>(); worldsWarpList = new HashMap<>();
WarpsData warps = handler.loadObject("warps"); WarpsData warps = new WarpsData();
if (handler.objectExists("warps")) {
warps = handler.loadObject("warps");
// Load into map // Load into map
if (warps != null) { if (warps != null) {
warps.getWarpSigns().forEach((k,v) -> { warps.getWarpSigns().forEach((k,v) -> {
@ -174,6 +176,7 @@ public class WarpSignsManager {
}); });
} }
} }
}
/** /**
* Changes the sign to red if it exists * Changes the sign to red if it exists