Fix a few links

This commit is contained in:
Aurora 2020-05-30 09:17:21 +02:00
parent 75153d8da8
commit 5602b33b78
No known key found for this signature in database
GPG Key ID: 89839F67B53656AD
5 changed files with 6 additions and 5 deletions

View File

@ -47,7 +47,7 @@ public class PlotSquaredFeature extends FaweMaskManager {
setupSchematicHandler(); setupSchematicHandler();
setupRegionManager(); setupRegionManager();
} catch (Throwable ignored) { } catch (Throwable ignored) {
log.debug("Please update PlotSquared: http://ci.athion.net/job/PlotSquared/"); log.debug("Please update PlotSquared");
} }
if (Settings.PLATFORM.toLowerCase().startsWith("bukkit")) { if (Settings.PLATFORM.toLowerCase().startsWith("bukkit")) {
new FaweTrim(); new FaweTrim();

View File

@ -28,6 +28,7 @@ import java.lang.management.ManagementFactory;
import java.lang.management.MemoryMXBean; import java.lang.management.MemoryMXBean;
import java.lang.management.MemoryPoolMXBean; import java.lang.management.MemoryPoolMXBean;
import java.lang.management.MemoryUsage; import java.lang.management.MemoryUsage;
import java.util.Calendar;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
import java.util.Locale; import java.util.Locale;
@ -305,7 +306,7 @@ public class Fawe {
this.version = FaweVersion.tryParse(versionString, commitString, dateString); this.version = FaweVersion.tryParse(versionString, commitString, dateString);
Settings.IMP.DATE = new Date(100 + version.year, version.month, version.day).toGMTString(); Settings.IMP.DATE = new Date(100 + version.year, version.month, version.day).toGMTString();
Settings.IMP.BUILD = "https://ci.athion.net/job/FastAsyncWorldEdit-1.15/" + version.build; Settings.IMP.BUILD = "https://ci.athion.net/job/FastAsyncWorldEdit-1.15/" + version.build;
Settings.IMP.COMMIT = "https://github.com/IntellectualSites/FastAsyncWorldEdit-1.13/commit/" + Integer.toHexString(version.hash); Settings.IMP.COMMIT = "https://github.com/IntellectualSites/FastAsyncWorldEdit/commit/" + Integer.toHexString(version.hash);
} catch (Throwable ignore) {} } catch (Throwable ignore) {}
try { try {
Settings.IMP.reload(file); Settings.IMP.reload(file);

View File

@ -21,7 +21,7 @@ public class Settings extends Config {
@Final // Indicates that this value isn't configurable @Final // Indicates that this value isn't configurable
public String ISSUES = "https://github.com/IntellectualSites/FastAsyncWorldEdit/issues"; public String ISSUES = "https://github.com/IntellectualSites/FastAsyncWorldEdit/issues";
@Final @Final
public String WIKI = "https://github.com/IntellectualSites/FastAsyncWorldEdit/wiki"; public String WIKI = "https://wiki.intellectualsites.com/FastAsyncWorldEdit/index";
@Final @Final
public String DATE; // These values are set from FAWE before loading public String DATE; // These values are set from FAWE before loading
@Final @Final

View File

@ -229,7 +229,7 @@ public final class IncendoPaster implements Paster {
b.append("OS Version: ").append(System.getProperty("os.version")).append('\n'); b.append("OS Version: ").append(System.getProperty("os.version")).append('\n');
b.append("OS Arch: ").append(System.getProperty("os.arch")).append('\n'); b.append("OS Arch: ").append(System.getProperty("os.arch")).append('\n');
b.append("# Okay :D Great. You are now ready to create your bug report!"); b.append("# Okay :D Great. You are now ready to create your bug report!");
b.append("\n# You can do so at https://github.com/IntellectualSites/FastAsyncWorldEdit-1.13/issues"); b.append("\n# You can do so at https://github.com/IntellectualSites/FastAsyncWorldEdit/issues");
b.append("\n# or via our Discord at https://discord.gg/ngZCzbU"); b.append("\n# or via our Discord at https://discord.gg/ngZCzbU");
incendoPaster.addFile(new IncendoPaster.PasteFile("information", b.toString())); incendoPaster.addFile(new IncendoPaster.PasteFile("information", b.toString()));

View File

@ -92,7 +92,7 @@ public class WorldEditCommands {
actor.printInfo(TranslatableComponent.of("worldedit.version.version", dateArg, commitArg, buildArg, platformArg)); actor.printInfo(TranslatableComponent.of("worldedit.version.version", dateArg, commitArg, buildArg, platformArg));
} }
actor.printInfo(TextComponent.of("Wiki: https://github.com/IntellectualSites/FastAsyncWorldEdit-1.13/wiki")); actor.printInfo(TextComponent.of("Wiki: https://wiki.intellectualsites.com/FastAsyncWorldEdit/index"));
PlatformManager pm = we.getPlatformManager(); PlatformManager pm = we.getPlatformManager();