a missing piece

This commit is contained in:
Maxmtg
2013-05-22 15:02:58 +00:00
parent fb43bc503c
commit 19adfe54f3

View File

@@ -45,7 +45,7 @@ public class QuestChallengeReader extends StorageReaderFolder<QuestEventChalleng
qc.setHumanLife(humanLife); qc.setHumanLife(humanLife);
} }
qc.setUseBazaar(sectionQuest.getBoolean("UseBazaar", true)); qc.setUseBazaar(sectionQuest.getBoolean("UseBazaar", true));
qc.setForceAnte(sectionQuest.getBoolean("ForceAnte", false)); qc.setForceAnte(sectionQuest.contains("ForceAnte") ? sectionQuest.getBoolean("ForceAnte") : null);
String humanDeck = sectionQuest.get("HumanDeck", null); String humanDeck = sectionQuest.get("HumanDeck", null);
if (humanDeck != null) { if (humanDeck != null) {