- C14: Added Domineering Will and Infernal Offering

This commit is contained in:
swordshine
2014-12-02 13:11:05 +00:00
parent a29260e846
commit 00753f486f
4 changed files with 28 additions and 2 deletions

View File

@@ -1049,14 +1049,14 @@ public class AbilityUtils {
}
else if (defined.equals("ChosenPlayer")) {
final Player p = card.getChosenPlayer();
if (!players.contains(p)) {
if (p != null && !players.contains(p)) {
players.add(p);
}
}
else if (defined.equals("ChosenAndYou")) {
players.add(sa.getActivatingPlayer());
final Player p = card.getChosenPlayer();
if (!players.contains(p)) {
if (p != null && !players.contains(p)) {
players.add(p);
}
}