minor cleanup; made econLandReward default to 0, disabled
This commit is contained in:
parent
204c78886f
commit
8fdd07b08f
@ -238,8 +238,7 @@ public class Conf
|
|||||||
public static double econCostEnemy = 0.0;
|
public static double econCostEnemy = 0.0;
|
||||||
|
|
||||||
public static int econLandRewardTaskRunsEveryXMinutes = 20;
|
public static int econLandRewardTaskRunsEveryXMinutes = 20;
|
||||||
public static double econLandReward = 0.03;
|
public static double econLandReward = 0.00;
|
||||||
public static double econLandRevertEnemyReward = 25.0;
|
|
||||||
|
|
||||||
//Faction banks, to pay for land claiming and other costs instead of individuals paying for them
|
//Faction banks, to pay for land claiming and other costs instead of individuals paying for them
|
||||||
public static boolean bankEnabled = true;
|
public static boolean bankEnabled = true;
|
||||||
|
@ -263,6 +263,8 @@ public class Factions extends EntityCollection<Faction>
|
|||||||
|
|
||||||
public void econLandRewardRoutine()
|
public void econLandRewardRoutine()
|
||||||
{
|
{
|
||||||
|
if ( ! Econ.shouldBeUsed()) return;
|
||||||
|
|
||||||
P.p.log("Running econLandRewardRoutine...");
|
P.p.log("Running econLandRewardRoutine...");
|
||||||
for (Faction faction : this.get())
|
for (Faction faction : this.get())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user