mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38:01 +00:00
a missing piece
This commit is contained in:
@@ -45,7 +45,7 @@ public class QuestChallengeReader extends StorageReaderFolder<QuestEventChalleng
|
||||
qc.setHumanLife(humanLife);
|
||||
}
|
||||
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);
|
||||
if (humanDeck != null) {
|
||||
|
||||
Reference in New Issue
Block a user