mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
Fix typo
This commit is contained in:
parent
4acf88e09d
commit
16fbd373c9
@ -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;
|
||||
}
|
||||
|
@ -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);
|
||||
|
@ -35,7 +35,7 @@ import com.plotsquared.general.commands.Argument;
|
||||
import com.plotsquared.general.commands.CommandDeclaration;
|
||||
|
||||
@CommandDeclaration(
|
||||
command = "regenallroads",
|
||||
command = "/plot regenallroads <world>",
|
||||
description = "Regenerate all roads in the map using the set road schematic",
|
||||
aliases = {"rgar"},
|
||||
category = CommandCategory.DEBUG,
|
||||
|
Loading…
Reference in New Issue
Block a user