diff --git a/src/main/java/com/intellectualcrafters/plot/PS.java b/src/main/java/com/intellectualcrafters/plot/PS.java index 0ea5e1842..a7bab50b8 100644 --- a/src/main/java/com/intellectualcrafters/plot/PS.java +++ b/src/main/java/com/intellectualcrafters/plot/PS.java @@ -1071,13 +1071,13 @@ public class PS { return null; } if (link == null) { - PS.debug("&dCould not check for updates"); + PS.debug("&dCould not check for updates (1)"); PS.debug("&7 - Manually check for updates: " + url); return null; } return link; } catch (Exception e) { - PS.debug("&dCould not check for updates"); + PS.debug("&dCould not check for updates (2)"); PS.debug("&7 - Manually check for updates: " + url); return null; } diff --git a/src/main/java/com/intellectualcrafters/plot/commands/Load.java b/src/main/java/com/intellectualcrafters/plot/commands/Load.java index 438326fa1..d2bb74401 100644 --- a/src/main/java/com/intellectualcrafters/plot/commands/Load.java +++ b/src/main/java/com/intellectualcrafters/plot/commands/Load.java @@ -77,7 +77,7 @@ public class Load extends SubCommand { } final URL url; try { - url = new URL(Settings.WEB_URL + "saves/" + plr.getUUID() + "/" + schem); + url = new URL(Settings.WEB_URL + "saves/" + plr.getUUID() + "/" + schem + ".schematic"); } catch (MalformedURLException e) { e.printStackTrace(); MainUtil.sendMessage(plr, C.LOAD_FAILED); diff --git a/src/main/java/com/intellectualcrafters/plot/commands/RegenAllRoads.java b/src/main/java/com/intellectualcrafters/plot/commands/RegenAllRoads.java index f46d5dc8b..549e94f31 100644 --- a/src/main/java/com/intellectualcrafters/plot/commands/RegenAllRoads.java +++ b/src/main/java/com/intellectualcrafters/plot/commands/RegenAllRoads.java @@ -35,7 +35,7 @@ import com.plotsquared.general.commands.Argument; import com.plotsquared.general.commands.CommandDeclaration; @CommandDeclaration( - command = "regenallroads", + command = "/plot regenallroads ", description = "Regenerate all roads in the map using the set road schematic", aliases = {"rgar"}, category = CommandCategory.DEBUG,