diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 8192d7fa6..a70ab837c 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,28 +1,100 @@ -__*NOTICE: Bukkit/Spigot versions 1.7.10 to 1.12.2 are considered legacy and will receive limited support. Please consider upgrading to 1.13 for future support. Plugins exist for 1.13+ that bring back old behaviors found in 1.8*__ -# Bug report template - - - -**Debug paste link:** - +--- +name: Bug/Issue report for PlotSquared +about: Bug / Issue report about this plugin +title: '' +labels: "[?] Testing Required" +assignees: '' -**[REQUIRED] Spigot/Paper Version Number:** +--- -**[REQUIRED] Minecraft Version Number:** + -**[REQUIRED] Description of the problem:** + -**Any relevant console output or screenshots:** + +**Feature requests & Suggestions are to be submitted at the [PlotSquared Suggestions tracker](https://github.com/IntellectualSites/PlotSquaredSuggestions)** -**How to replicate:** +**Code contributions are to be done through [PRs](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request), tagging the specific issue ticket(s) if applicable.** + +**[DISCORD INVITE LINK](https://discord.gg/KxkjDVg)** +--> + +# Bug Report Template: + +## Required Information section: +> ALL FIELDS IN THIS SECTION ARE REQUIRED, and must contain appropriate information +### Server config info (/plot debugpaste / file paste links): + + + + +### Server type: +**Select one** + +- [] Spigot / Paper *(CraftBukkit should not be used, re-test with Spigot first!)* +- [] Sponge +- [] NukkitX + +### PlotSquared version: + +``` +Paste the output here, between the tick marks, replacing this text +``` + +### Minecraft Version: +**Select one** + +- [] Minecraft 1.15.2 +- [] Minecraft 1.14.4 +- [] Minecraft 1.13.2 +- [] Minecraft 1.12.2 +- [] Minecraft 1.11.2 +- [] Minecraft 1.10.2 +- [] Minecraft 1.9.4 +- [] Minecraft 1.8.8 +- [] Minecraft Java Edition *other versions, please specify*: +- [] Minecraft Bedrock Edition *specify version*: +- [] Minecraft Sponge *specify version*: + +### Server build info: + +``` +Paste the output here, between the tick marks, replacing this text +``` + +### WorldEdit/FAWE versions: + +- [] FAWE version: +- [] WorldEdit version: + +### Description of the problem: + + + +### How to replicate: -**Checklist**: +## Additional Information: +> The information here is optional for you to provide, however it may help us to more readily diagnose any compatibility and bug issues. + +### Other plugins being used on the server: + + +### Relevant console output, log lines, and/or screenshots: + + +### Additional relevant comments/remarks: + + +# AFFIRMATION OF COMPLETION: - [] 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/PlotSquared/issues?utf8=%E2%9C%93&q=is%3Aissue) - [] I made sure I am using an up-to-date version of PlotSquared - [] I made sure the bug/error is not caused by any other plugin +- [x] I didn't read but checked everything above. diff --git a/.github/ISSUE_TEMPLATE/bug-issue-report-for-plotsquared.md b/.github/ISSUE_TEMPLATE/bug-issue-report-for-plotsquared.md index eb3ac153e..a70ab837c 100644 --- a/.github/ISSUE_TEMPLATE/bug-issue-report-for-plotsquared.md +++ b/.github/ISSUE_TEMPLATE/bug-issue-report-for-plotsquared.md @@ -12,21 +12,12 @@ assignees: '' # Bug Report Template: @@ -42,18 +33,29 @@ assignees: '' **Select one** - [] Spigot / Paper *(CraftBukkit should not be used, re-test with Spigot first!)* -- [] Sponge *- NOTE: NOT ACTIVELY MAINTAINED* -- [] NukkitX *- NOTE: NOT ACTIVELY MAINTAINED* +- [] Sponge +- [] NukkitX + +### PlotSquared version: + +``` +Paste the output here, between the tick marks, replacing this text +``` ### Minecraft Version: **Select one** - + - [] Minecraft 1.15.2 - [] Minecraft 1.14.4 - [] Minecraft 1.13.2 +- [] Minecraft 1.12.2 +- [] Minecraft 1.11.2 +- [] Minecraft 1.10.2 +- [] Minecraft 1.9.4 +- [] Minecraft 1.8.8 - [] Minecraft Java Edition *other versions, please specify*: - [] Minecraft Bedrock Edition *specify version*: +- [] Minecraft Sponge *specify version*: ### Server build info: diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java b/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java index e305e8f15..b05f26cb5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java @@ -69,6 +69,8 @@ import com.plotsquared.core.plot.flag.implementations.KelpGrowFlag; import com.plotsquared.core.plot.flag.implementations.LiquidFlowFlag; import com.plotsquared.core.plot.flag.implementations.MiscBreakFlag; import com.plotsquared.core.plot.flag.implementations.MiscCapFlag; +import com.plotsquared.core.plot.flag.implementations.MiscInteractFlag; +import com.plotsquared.core.plot.flag.implementations.MiscPlaceFlag; import com.plotsquared.core.plot.flag.implementations.MobBreakFlag; import com.plotsquared.core.plot.flag.implementations.MobCapFlag; import com.plotsquared.core.plot.flag.implementations.MobPlaceFlag; @@ -173,6 +175,8 @@ public final class GlobalFlagContainer extends FlagContainer { this.addFlag(InstabreakFlag.INSTABREAK_FALSE); this.addFlag(InvincibleFlag.INVINCIBLE_FALSE); this.addFlag(ChatFlag.CHAT_FLAG_TRUE); + this.addFlag(MiscPlaceFlag.MISC_PLACE_FALSE); + this.addFlag(MiscInteractFlag.MISC_INTERACT_FALSE); // Enum Flags this.addFlag(WeatherFlag.PLOT_WEATHER_FLAG_OFF);