If f perm is not set or undefined, allow server owners to define default f fly access in the conf.json. Adds #1100

This commit is contained in:
Trent Hensler
2018-03-20 19:19:24 -07:00
parent 20cd874026
commit 1567df7311
2 changed files with 32 additions and 4 deletions

View File

@@ -160,6 +160,12 @@ public class Conf {
public static Set<String> warzoneDenyCommands = new LinkedHashSet<>();
public static Set<String> wildernessDenyCommands = new LinkedHashSet<>();
public static boolean defaultFlyPermEnemy = false;
public static boolean defaultFlyPermNeutral = false;
public static boolean defaultFlyPermTruce = false;
public static boolean defaultFlyPermAlly = true;
public static boolean defaultFlyPermMember = true;
public static boolean territoryDenyBuild = true;
public static boolean territoryDenyBuildWhenOffline = true;
public static boolean territoryPainBuild = false;