Adjustments for starter village repeatable quests based on turning in items.

Contributed by altronrain.
This commit is contained in:
MobiusDevelopment
2022-07-01 23:40:41 +00:00
parent a3378dd942
commit dbce3481ad
30 changed files with 198 additions and 26 deletions

View File

@ -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);