- Improved the AI of Delver of Secrets.

This commit is contained in:
Sloth
2012-01-31 19:24:50 +00:00
parent c7a3d21f7d
commit 25c6c3628b

View File

@@ -406,9 +406,12 @@ public final class AbilityFactoryReveal {
question += c + " ";
}
if (p.isHuman() && GameActionUtil.showYesNoDialog(host, question)) {
GuiUtils.getChoice("Revealing cards from library", top.toArray());
GuiUtils.getChoice(host + "Revealing cards from library", top.toArray());
// AllZone.getGameAction().revealToCopmuter(top.toArray());
cardsRevealed = true;
} else if (p.isComputer() && (top.get(0).isInstant() || top.get(0).isSorcery())) {
GuiUtils.getChoice(host + "Revealing cards from library", top.toArray());
cardsRevealed = true;
}
} else if (params.containsKey("RevealValid")) {
final String revealValid = params.get("RevealValid");