forked from External/mage
Fixed #4960
This commit is contained in:
parent
e187a73e5f
commit
0ec39af940
1 changed files with 5 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue