Commits

sk89q authored b11d4160358
Revert the default region groups of the entry/exit flags back to WG 5.
No tags

src/main/java/com/sk89q/worldguard/protection/flags/DefaultFlag.java

Modified
85 85 public static final StateFlag LEAF_DECAY = new StateFlag("leaf-decay", true);
86 86 public static final StateFlag GRASS_SPREAD = new StateFlag("grass-growth", true);
87 87 public static final StateFlag MYCELIUM_SPREAD = new StateFlag("mycelium-spread", true);
88 88 public static final StateFlag VINE_GROWTH = new StateFlag("vine-growth", true);
89 89 public static final StateFlag SOIL_DRY = new StateFlag("soil-dry", true);
90 90 public static final StateFlag ENDER_BUILD = new StateFlag("enderman-grief", true);
91 91 public static final StateFlag INVINCIBILITY = new StateFlag("invincible", false);
92 92 public static final StateFlag EXP_DROPS = new StateFlag("exp-drops", true);
93 93 public static final StateFlag SEND_CHAT = new StateFlag("send-chat", true);
94 94 public static final StateFlag RECEIVE_CHAT = new StateFlag("receive-chat", true);
95 - public static final StateFlag ENTRY = new StateFlag("entry", true);
96 - public static final StateFlag EXIT = new StateFlag("exit", true);
95 + public static final StateFlag ENTRY = new StateFlag("entry", true, RegionGroup.NON_MEMBERS);
96 + public static final StateFlag EXIT = new StateFlag("exit", true, RegionGroup.NON_MEMBERS);
97 97 public static final StateFlag ENDERPEARL = new StateFlag("enderpearl", true);
98 98 public static final StateFlag ENTITY_PAINTING_DESTROY = new StateFlag("entity-painting-destroy", true);
99 99 public static final StateFlag ENTITY_ITEM_FRAME_DESTROY = new StateFlag("entity-item-frame-destroy", true);
100 100 public static final StateFlag POTION_SPLASH = new StateFlag("potion-splash", true);
101 101
102 102 // Flags that adjust behaviors that aren't state flags
103 103 public static final StringFlag DENY_MESSAGE = new StringFlag("deny-message",
104 104 "" + ChatColor.RED + ChatColor.BOLD + "Hey!" + ChatColor.GRAY + " Sorry, but you can't %what% here.");
105 105 public static final StringFlag GREET_MESSAGE = new StringFlag("greeting");
106 106 public static final StringFlag FAREWELL_MESSAGE = new StringFlag("farewell");

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut