From 6f2b31f4a3de54017983cec7218c918528a28355 Mon Sep 17 00:00:00 2001 From: Hannes Greule Date: Sat, 11 Apr 2020 18:49:04 +0200 Subject: [PATCH] Add missing default flag values to GlobalFlagContainer (fixes #2748) --- .../plotsquared/plot/flags/GlobalFlagContainer.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/flags/GlobalFlagContainer.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/flags/GlobalFlagContainer.java index 3574b24b0..af177144e 100644 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/flags/GlobalFlagContainer.java +++ b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/flags/GlobalFlagContainer.java @@ -68,6 +68,8 @@ import com.github.intellectualsites.plotsquared.plot.flags.implementations.KelpG import com.github.intellectualsites.plotsquared.plot.flags.implementations.LiquidFlowFlag; import com.github.intellectualsites.plotsquared.plot.flags.implementations.MiscBreakFlag; import com.github.intellectualsites.plotsquared.plot.flags.implementations.MiscCapFlag; +import com.github.intellectualsites.plotsquared.plot.flags.implementations.MiscInteractFlag; +import com.github.intellectualsites.plotsquared.plot.flags.implementations.MiscPlaceFlag; import com.github.intellectualsites.plotsquared.plot.flags.implementations.MobBreakFlag; import com.github.intellectualsites.plotsquared.plot.flags.implementations.MobCapFlag; import com.github.intellectualsites.plotsquared.plot.flags.implementations.MobPlaceFlag; @@ -148,6 +150,8 @@ public final class GlobalFlagContainer extends FlagContainer { this.addFlag(RedstoneFlag.REDSTONE_TRUE); this.addFlag(ServerPlotFlag.SERVER_PLOT_FALSE); this.addFlag(MiscBreakFlag.MISC_BREAK_FALSE); + this.addFlag(MiscInteractFlag.MISC_INTERACT_FALSE); + this.addFlag(MiscPlaceFlag.MISC_PLACE_FALSE); this.addFlag(MobBreakFlag.MOB_BREAK_FALSE); this.addFlag(MobPlaceFlag.MOB_PLACE_FALSE); this.addFlag(MycelGrowFlag.MYCEL_GROW_TRUE);