From d32777a53ef93ecb136c368ed73ffe1f2c57f137 Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Fri, 24 May 2019 11:22:11 +0200 Subject: [PATCH 1/4] Revert "Fix //none removing arbitrary nbt" This reverts commit dd0bec89135fede4966d53180256bc346d677b54. --- .../src/main/java/com/boydti/fawe/util/BrushCache.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/worldedit-core/src/main/java/com/boydti/fawe/util/BrushCache.java b/worldedit-core/src/main/java/com/boydti/fawe/util/BrushCache.java index 7c885af07..4adbcdc35 100644 --- a/worldedit-core/src/main/java/com/boydti/fawe/util/BrushCache.java +++ b/worldedit-core/src/main/java/com/boydti/fawe/util/BrushCache.java @@ -77,11 +77,8 @@ public final class BrushCache { Map map; if (nbt == null) { if (tool == null) { - Map raw = nbt.getRaw(); - if (raw.remove("weBrushJson") != null && raw.isEmpty()) { - item.setNbtData(null); - } - return null; + item.setNbtData(null); + return tool; } nbt = new CompoundTag(map = new HashMap<>()); } else { From 09e3ea48b8a94ed181829704e9f9aa6332046a6e Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Fri, 24 May 2019 11:50:45 +0200 Subject: [PATCH 2/4] Use "new" template formats --- ...ue-report-for-fastasyncworldedit-1-13-2.md | 39 +++++++++++++++++++ ...ue-report-for-fastasyncworldedit-1-13-2.md | 39 +++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++ 3 files changed, 98 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug---issue-report-for-fastasyncworldedit-1-13-2.md create mode 100644 .github/ISSUE_TEMPLATE/bug-issue-report-for-fastasyncworldedit-1-13-2.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md 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 new file mode 100644 index 000000000..07b0f7b25 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug---issue-report-for-fastasyncworldedit-1-13-2.md @@ -0,0 +1,39 @@ +--- +name: Bug / Issue report for FastAsyncWorldEdit 1.13.2 +about: Bug / Issue report about this plugin +title: '' +labels: Requires Testing +assignees: '' + +--- + +# Bug report for FastAsyncWorldEdit 1.13.2 + + + + +**[REQUIRED] FastAsyncWorldEdit Version Number:** + + +**[REQUIRED] Spigot/Paper Version Number:** + + +**Links to config.yml and config-legacy.yml file:** + + +**[REQUIRED] Description of the problem:** + + + +**Plugins being used on the server:** + + +**How to replicate**: + + +**Checklist**: + +- [] 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-1.13/issues?utf8=%E2%9C%93&q=is%3Aissue) +- [] I made sure I am using an up-to-date version of [FastAsyncWorldEdit for 1.13.2](https://ci.athion.net/job/FastAsyncWorldEdit-Breaking/) +- [] I made sure the bug/error is not caused by any other plugin 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 new file mode 100644 index 000000000..168aee604 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-issue-report-for-fastasyncworldedit-1-13-2.md @@ -0,0 +1,39 @@ +--- +name: Bug/Issue report for FastAsyncWorldEdit 1.13.2 +about: Bug/Issue report about this plugin +title: '' +labels: Requires Testing +assignees: '' + +--- + +# Bug report for FastAsyncWorldEdit 1.13.2 + + + + +**[REQUIRED] FastAsyncWorldEdit Version Number:** + + +**[REQUIRED] Spigot/Paper Version Number:** + + +**Links to config.yml and config-legacy.yml file:** + + +**[REQUIRED] Description of the problem:** + + + +**Plugins being used on the server:** + + +**How to replicate**: + + +**Checklist**: + +- [] 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-1.13/issues?utf8=%E2%9C%93&q=is%3Aissue) +- [] I made sure I am using an up-to-date version of [FastAsyncWorldEdit for 1.13.2](https://ci.athion.net/job/FastAsyncWorldEdit-Breaking/) +- [] I made sure the bug/error is not caused by any other plugin diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..0695e00a9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: "[+] Enhancement" +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. From a0b5662d4ae8c087da818cbe85fbc29b51a88c06 Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Fri, 24 May 2019 11:57:32 +0200 Subject: [PATCH 3/4] Update issue templates --- ...ue-report-for-fastasyncworldedit-1-13-2.md | 39 ------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug-issue-report-for-fastasyncworldedit-1-13-2.md 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 deleted file mode 100644 index 168aee604..000000000 --- a/.github/ISSUE_TEMPLATE/bug-issue-report-for-fastasyncworldedit-1-13-2.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -name: Bug/Issue report for FastAsyncWorldEdit 1.13.2 -about: Bug/Issue report about this plugin -title: '' -labels: Requires Testing -assignees: '' - ---- - -# Bug report for FastAsyncWorldEdit 1.13.2 - - - - -**[REQUIRED] FastAsyncWorldEdit Version Number:** - - -**[REQUIRED] Spigot/Paper Version Number:** - - -**Links to config.yml and config-legacy.yml file:** - - -**[REQUIRED] Description of the problem:** - - - -**Plugins being used on the server:** - - -**How to replicate**: - - -**Checklist**: - -- [] 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-1.13/issues?utf8=%E2%9C%93&q=is%3Aissue) -- [] I made sure I am using an up-to-date version of [FastAsyncWorldEdit for 1.13.2](https://ci.athion.net/job/FastAsyncWorldEdit-Breaking/) -- [] I made sure the bug/error is not caused by any other plugin From 8959fe07f7c63b02fc6a7a9b3b70813a8157dbc6 Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Fri, 24 May 2019 12:04:14 +0200 Subject: [PATCH 4/4] Finalize new templates --- .github/ISSUE_TEMPLATE.md | 30 ------------------------------ README.md | 2 +- 2 files changed, 1 insertion(+), 31 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 070ba585a..000000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,30 +0,0 @@ -# Bug report for FastAsyncWorldEdit 1.13.2 - - - - -**[REQUIRED] FastAsyncWorldEdit Version Number:** - - -**[REQUIRED] Spigot/Paper Version Number:** - - -**Links to config.yml and config-legacy.yml file:** - - -**[REQUIRED] Description of the problem:** - - - -**Plugins being used on the server:** - - -**How to replicate**: - - -**Checklist**: - -- [] 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-1.13/issues?utf8=%E2%9C%93&q=is%3Aissue) -- [] I made sure I am using an up-to-date version of [FastAsyncWorldEdit for 1.13.2](https://ci.athion.net/job/FastAsyncWorldEdit-Breaking/) -- [] I made sure the bug/error is not caused by any other plugin diff --git a/README.md b/README.md index 08da15539..60ee346f6 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ 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/ngZCzbU) * [Wiki](https://github.com/boy0001/FastAsyncWorldedit/wiki) -* [Report Issue](https://github.com/IntellectualSites/FastAsyncWorldEdit-1.13/issues/new) +* [Report Issue](https://github.com/IntellectualSites/FastAsyncWorldEdit-1.13/issues) ## Downloads ### 1.13+