Adjustments for starter village repeatable quests based on turning in items.
Contributed by altronrain.
This commit is contained in:
@ -178,6 +178,7 @@ public class Config
|
||||
public static boolean ALLOW_WEAR;
|
||||
public static int WEAR_DELAY;
|
||||
public static int WEAR_PRICE;
|
||||
public static boolean ALT_VILLAGES_REPEATABLE_QUEST_REWARD;
|
||||
public static boolean ALLOW_LOTTERY;
|
||||
public static boolean ALLOW_RACE;
|
||||
public static boolean ALLOW_RENTPET;
|
||||
@ -1505,6 +1506,7 @@ public class Config
|
||||
ALLOW_WEAR = generalConfig.getBoolean("AllowWear", false);
|
||||
WEAR_DELAY = generalConfig.getInt("WearDelay", 5);
|
||||
WEAR_PRICE = generalConfig.getInt("WearPrice", 10);
|
||||
ALT_VILLAGES_REPEATABLE_QUEST_REWARD = generalConfig.getBoolean("AltVillagesRepQuestReward", false);
|
||||
ALLOW_LOTTERY = generalConfig.getBoolean("AllowLottery", false);
|
||||
ALLOW_RACE = generalConfig.getBoolean("AllowRace", false);
|
||||
ALLOW_RENTPET = generalConfig.getBoolean("AllowRentPet", false);
|
||||
|
Reference in New Issue
Block a user