- Fixed Keranos

This commit is contained in:
swordshine
2014-04-11 00:55:00 +00:00
parent 01e6cc5c41
commit b6aede3549

View File

@@ -1298,7 +1298,8 @@ public class Player extends GameEntity implements Comparable<Player> {
boolean reveal = false;
final List<Card> cards = this.getCardsIn(ZoneType.Battlefield);
for (final Card card : cards) {
if (card.hasKeyword("Reveal the first card you draw each turn")) {
if (card.hasKeyword("Reveal the first card you draw each turn")
|| (card.hasKeyword("Reveal the first card you draw on each of your turns") && game.getPhaseHandler().isPlayerTurn(this))) {
reveal = true;
break;
}