mirror of
https://github.com/MassiveCraft/Factions.git
synced 2024-11-05 01:59:46 +01:00
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 int econLandRewardTaskRunsEveryXMinutes = 20;
|
||||
public static double econLandReward = 0.03;
|
||||
public static double econLandRevertEnemyReward = 25.0;
|
||||
public static double econLandReward = 0.00;
|
||||
|
||||
//Faction banks, to pay for land claiming and other costs instead of individuals paying for them
|
||||
public static boolean bankEnabled = true;
|
||||
|
@ -263,6 +263,8 @@ public class Factions extends EntityCollection<Faction>
|
||||
|
||||
public void econLandRewardRoutine()
|
||||
{
|
||||
if ( ! Econ.shouldBeUsed()) return;
|
||||
|
||||
P.p.log("Running econLandRewardRoutine...");
|
||||
for (Faction faction : this.get())
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user