- Added AI support for Perilous Research (given the right deck).

This commit is contained in:
Sloth
2014-10-09 21:57:45 +00:00
parent 94b81a6ec9
commit 42e3778778
2 changed files with 7 additions and 1 deletions

View File

@@ -4995,6 +4995,11 @@ public class Card extends GameEntity implements Comparable<Card>, IIdentifiable
if (!isCommander) {
return false;
}
} else if (property.startsWith("HasSVar")) {
final String svar = property.substring(8);
if (!hasSVar(svar)) {
return false;
}
} else {
if (!isType(property)) {
return false;