From da96365504241fa4ed99c5f15747318f02e5727b Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Mon, 13 Jul 2020 13:13:43 +0200 Subject: [PATCH] Updating a few links --- ...---issue-report-for-fastasyncworldedit-1-13-2.md | 10 +++++----- .github/PULL_REQUEST_TEMPLATE.md | 2 +- README.md | 13 ++++--------- .../sk89q/worldedit/command/WorldEditCommands.java | 2 +- 4 files changed, 11 insertions(+), 16 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug---issue-report-for-fastasyncworldedit-1-13-2.md b/.github/ISSUE_TEMPLATE/bug---issue-report-for-fastasyncworldedit-1-13-2.md index 47f004ca3..261b049fb 100644 --- a/.github/ISSUE_TEMPLATE/bug---issue-report-for-fastasyncworldedit-1-13-2.md +++ b/.github/ISSUE_TEMPLATE/bug---issue-report-for-fastasyncworldedit-1-13-2.md @@ -1,5 +1,5 @@ --- -name: Bug / Issue report for FastAsyncWorldEdit v1.15.2 +name: Bug / Issue report for FastAsyncWorldEdit v1.16.1 about: Bug / Issue report about this plugin title: '' labels: Requires Testing @@ -7,9 +7,9 @@ assignees: '' --- -# Bug report for FastAsyncWorldEdit 1.15.2 - - +# Bug report for FastAsyncWorldEdit 1.16.1 + + @@ -41,5 +41,5 @@ assignees: '' - [] I included all information required in the sections above - [] I made sure there are no duplicates of this report [(Use Search)](https://github.com/IntellectualSites/FastAsyncWorldEdit/issues?q=is%3Aissue) -- [] I made sure I am using an up-to-date version of [FastAsyncWorldEdit for 1.15.2](https://ci.athion.net/job/FastAsyncWorldEdit-1.15/) +- [] I made sure I am using an up-to-date version of [FastAsyncWorldEdit for 1.16.1](https://ci.athion.net/job/FastAsyncWorldEdit-1.16/) - [] I made sure the bug/error is not caused by any other plugin diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index ac23f5a75..58e192ab0 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -16,4 +16,4 @@ You can do so here: https://github.com/IntellectualSites/FastAsyncWorldEdit/issu - [] I included all information required in the sections above - [] I tested my changes and approved their functionality - [] I ensured my changes do not break other parts of the code -- [] I read and followed the [contribution guidelines](https://github.com/IntellectualSites/FastAsyncWorldEdit/blob/1.15/CONTRIBUTING.md) +- [] I read and followed the [contribution guidelines](https://github.com/IntellectualSites/FastAsyncWorldEdit/blob/1.16/CONTRIBUTING.md) diff --git a/README.md b/README.md index 09b28f24b..8c90a3c07 100644 --- a/README.md +++ b/README.md @@ -11,20 +11,15 @@ FAWE is a fork of WorldEdit that has huge speed and memory improvements and cons * [Spigot Page](https://www.spigotmc.org/threads/fast-async-worldedit.100104/) * [Discord](https://discord.gg/KxkjDVg) * [Wiki](https://wiki.intellectualsites.com/FastAsyncWorldEdit/index) -* [Report Issue](https://github.com/IntellectualSites/FastAsyncWorldEdit-1.13/issues) +* [Report Issue](https://github.com/IntellectualSites/FastAsyncWorldEdit/issues) * [Crowdin](https://intellectualsites.crowdin.com/fastasyncworldedit) +* [JavaDocs](https://ci.athion.net/job/FastAsyncWorldEdit-1.16/javadoc/) ## Downloads -### 1.13+ +### 1.14+ * [Download](https://intellectualsites.github.io/download/fawe.html) * [Jenkins](https://ci.athion.net/job/FastAsyncWorldEdit-1.16/) -### < 1.12.2 -* [Download](https://intellectualsites.github.io/download/fawe.html) -* [Jenkins](https://ci.athion.net/job/FastAsyncWorldEdit/) -* [Repository](https://github.com/boy0001/FastAsyncWorldedit) -* [JavaDoc](https://ci.athion.net/job/FastAsyncWorldEdit/javadoc/) - ## Building FAWE uses gradle to build @@ -32,7 +27,7 @@ You can safely ignore `gradlew setupDecompWorkspace` if you are not planning to ``` $ gradlew setupDecompWorkspace -$ gradlew build +$ gradlew clean build -x test ``` The jar is located in `worldedit-bukkit/build/libs/FastAsyncWorldEdit-1.16-###.jar` diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/command/WorldEditCommands.java b/worldedit-core/src/main/java/com/sk89q/worldedit/command/WorldEditCommands.java index 3287fad18..581f73ad6 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/command/WorldEditCommands.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/command/WorldEditCommands.java @@ -77,7 +77,7 @@ public class WorldEditCommands { public void version(Actor actor) { FaweVersion fVer = Fawe.get().getVersion(); String fVerStr = fVer == null ? "unknown" : "-" + fVer.build; - actor.print(TextComponent.of("FastAsyncWorldEdit" + fVerStr + " created by Empire92")); + actor.print(TextComponent.of("FastAsyncWorldEdit" + fVerStr + " created by Empire92, MattBDev, IronApollo, dordsor21 and NotMyFault")); if (fVer != null) { FaweVersion version = Fawe.get().getVersion();