Update wiki location

This commit is contained in:
NotMyFault 2021-06-06 21:40:34 +02:00
parent 5cdb7e76fd
commit a01ad5aa04
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
2 changed files with 9 additions and 9 deletions

View File

@ -208,7 +208,7 @@ public class Settings extends Config {
public List<String> 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<String>
"Checkout the wiki article regarding plot components before modifying: https://github.com/IntellectualSites/PlotSquared-Documentation/wiki/Plot-Components"}) public static List<String>
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")

View File

@ -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.