From a01ad5aa04d8c6c454f8ae4b50517ea62a89c7fd Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Sun, 6 Jun 2021 21:40:34 +0200 Subject: [PATCH] Update wiki location --- .../com/plotsquared/core/configuration/Settings.java | 12 ++++++------ README.md | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java index 1b568fe69..988821265 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java @@ -208,7 +208,7 @@ public class Settings extends Config { public List WORLDS = new ArrayList<>(Collections.singletonList("*")); - @Comment("See: https://github.com/IntellectualSites/PlotSquared/wiki/Plot-analysis for a description of each value.") + @Comment("See: https://github.com/IntellectualSites/PlotSquared-Documentation/wiki/Plot-analysis for a description of each value.") public static final class CALIBRATION { public int VARIETY = 0; public int VARIETY_SD = 0; @@ -225,7 +225,7 @@ public class Settings extends Config { @Comment({"Chunk processor related settings", - "See https://github.com/IntellectualSites/PlotSquared/wiki/Chunk-processor for more information."}) + "See https://github.com/IntellectualSites/PlotSquared-Documentation/wiki/Chunk-processor for more information."}) public static class Chunk_Processor { @Comment("Auto trim will not save chunks which aren't claimed") public static boolean AUTO_TRIM = false; @@ -276,7 +276,7 @@ public class Settings extends Config { @Comment("Display scientific numbers (4.2E8)") public static boolean SCIENTIFIC = false; @Comment("Replace wall when merging") public static boolean MERGE_REPLACE_WALL = true; @Comment({"Blocks that may not be used in plot components", - "Checkout the wiki article regarding plot components before modifying: https://github.com/IntellectualSites/PlotSquared/wiki/Plot-Components"}) public static List + "Checkout the wiki article regarding plot components before modifying: https://github.com/IntellectualSites/PlotSquared-Documentation/wiki/Plot-Components"}) public static List INVALID_BLOCKS = Arrays.asList( // Acacia Stuff "acacia_button", "acacia_fence_gate", "acacia_door", "acacia_pressure_plate", @@ -391,7 +391,7 @@ public class Settings extends Config { @Comment({"Schematic Settings", - "See https://github.com/IntellectualSites/PlotSquared/wiki/Schematic-on-Claim for more information."}) + "See https://github.com/IntellectualSites/PlotSquared-Documentation/wiki/Schematic-on-Claim for more information."}) public static final class Schematics { @Comment( "Whether schematic based generation should paste schematic on top of plots, or from Y=1") @@ -457,7 +457,7 @@ public class Settings extends Config { @Comment({"Backup related settings", - "See https://github.com/IntellectualSites/PlotSquared/wiki/Backups for more information."}) + "See https://github.com/IntellectualSites/PlotSquared-Documentation/wiki/Backups for more information."}) public static final class Backup { @Comment("Automatically backup plots when destructive commands are performed, e.g. /plot clear") public static boolean AUTOMATIC_BACKUPS = true; @@ -586,7 +586,7 @@ public class Settings extends Config { @Comment("Make road regeneration persistent across restarts") public static boolean PERSISTENT_ROAD_REGEN = false; @Comment({"Enable the `/plot component` preset GUI", - "Read more about components here: https://github.com/IntellectualSites/PlotSquared/wiki/Plot-Components"}) public static boolean COMPONENT_PRESETS = true; + "Read more about components here: https://github.com/IntellectualSites/PlotSquared-Documentation/wiki/Plot-Components"}) public static boolean COMPONENT_PRESETS = true; @Comment("Use UUID cache to complete usernames") public static boolean EXTENDED_USERNAME_COMPLETION = true; @Comment("Command aliases that will be tab completed") diff --git a/README.md b/README.md index 41a5c4179..ed76795f1 100644 --- a/README.md +++ b/README.md @@ -32,9 +32,9 @@ is to provide a lag-free and smooth experience. * [Translations](https://intellectualsites.crowdin.com/plotsquared/) ### Developer Resources -* [API Documentation](https://github.com/IntellectualSites/PlotSquared/wiki/API-Documentation) -* [Event API](https://github.com/IntellectualSites/PlotSquared/wiki/Events) -* [Flag API](https://github.com/IntellectualSites/PlotSquared/wiki/API-Flag) +* [API Documentation](https://github.com/IntellectualSites/PlotSquared-Documentation/wiki/API-Documentation) +* [Event API](https://github.com/IntellectualSites/PlotSquared-Documentation/wiki/Events) +* [Flag API](https://github.com/IntellectualSites/PlotSquared-Documentation/wiki/API-Flag) # Building Gradle is the **recommended** way to build the project. Use `./gradlew build` in the main project directory to build the project. Gradle is required if you intend to build or develop the Sponge module.