This commit is contained in:
L_J 2018-05-21 12:48:11 +00:00 committed by GitHub
parent e187a73e5f
commit 0ec39af940
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,6 +33,7 @@ import java.util.UUID;
import mage.abilities.Ability;
import mage.abilities.common.BeginningOfEndStepTriggeredAbility;
import mage.abilities.effects.OneShotEffect;
import mage.cards.Card;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
@ -148,7 +149,10 @@ class DesolationWatcher extends Watcher {
if (event.getType() == GameEvent.EventType.TAPPED_FOR_MANA) {
UUID playerId = event.getPlayerId();
if (playerId != null) {
tappedForManaThisTurnPlayers.add(playerId);
Card card = game.getCard(event.getSourceId());
if (card != null && card.isLand()) {
tappedForManaThisTurnPlayers.add(playerId);
}
}
}
}