* Veil of Summer - fixed that it doesn't count blue spells;

This commit is contained in:
Oleg Agafonov 2019-07-06 12:38:54 +04:00
parent f166724562
commit f572ace420

View file

@ -92,7 +92,7 @@ class VeilOfSummerWatcher extends Watcher {
if (spell == null) {
return;
}
if (spell.getColor(game).isBlack() || spell.getColor(game).isBlack()) {
if (spell.getColor(game).isBlack() || spell.getColor(game).isBlue()) {
opponentsCastBlueBlackSpell.addAll(game.getOpponents(spell.getControllerId()));
}
}