@Deprecated // Use FType from now on public static boolean isWilderness(Faction faction) { if (FType.valueOf(faction) == FType.WILDERNESS) { return true; } return false; }
@Deprecated // Use FType from now on public static final boolean isPlayerFaction(Faction faction) { if (FType.valueOf(faction) == FType.FACTION) { return true; } return false; }
@Deprecated // Use FType from now on public static boolean isSafeZone(Faction faction) { if (FType.valueOf(faction) == FType.SAFEZONE) { return true; } return false; }