From a330931cd51891075c905b005d3a946775b0b64b Mon Sep 17 00:00:00 2001 From: Brettflan Date: Wed, 18 Jan 2012 21:10:40 -0600 Subject: [PATCH] New conf.json setting "econClaimUnconnectedFee" (default 0.0), which can be set as an additional economic cost for claiming land which is not connected to existing claims. This additional cost is only added if the faction has at least 1 existing claim somewhere in the current world, and is added to the cost after all other calculations are done. This fee is not refunded from unclaiming land or even considered in actual land values. --- src/com/massivecraft/factions/Conf.java | 1 + src/com/massivecraft/factions/FPlayer.java | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/com/massivecraft/factions/Conf.java b/src/com/massivecraft/factions/Conf.java index 24d87767..63ca1d90 100644 --- a/src/com/massivecraft/factions/Conf.java +++ b/src/com/massivecraft/factions/Conf.java @@ -174,6 +174,7 @@ public class Conf public static double econCostClaimFromFactionBonus = 30.0; public static double econClaimAdditionalMultiplier = 0.5; public static double econClaimRefundMultiplier = 0.7; + public static double econClaimUnconnectedFee = 0.0; public static double econCostCreate = 100.0; public static double econCostSethome = 30.0; public static double econCostJoin = 0.0; diff --git a/src/com/massivecraft/factions/FPlayer.java b/src/com/massivecraft/factions/FPlayer.java index 1589e9b2..d8a84367 100644 --- a/src/com/massivecraft/factions/FPlayer.java +++ b/src/com/massivecraft/factions/FPlayer.java @@ -625,8 +625,10 @@ public class FPlayer extends PlayerEntity implements EconomyParticipator if (Econ.shouldBeUsed() && ! this.hasAdminMode()) { double cost = Econ.calculateClaimCost(ownedLand, currentFaction.isNormal()); - //String costString = Econ.moneyString(cost); - + + if (Conf.econClaimUnconnectedFee != 0.0 && forFaction.getLandRoundedInWorld(flocation.getWorldName()) > 0 && !Board.isConnectedLocation(flocation, currentFaction)) + cost += Conf.econClaimUnconnectedFee; + if(Conf.bankEnabled && Conf.bankFactionPaysLandCosts && this.hasFaction()) { Faction faction = this.getFaction();