fixed Mana Web not taking colorless mana into account

This commit is contained in:
Evan Kranzler 2017-09-27 21:19:04 -04:00
parent dbb185c47a
commit 9797f4d23b
2 changed files with 10 additions and 3 deletions

View file

@ -52,7 +52,7 @@ import mage.target.targetpointer.FixedTarget;
public class ManaWeb extends CardImpl {
public ManaWeb(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{3}");
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}");
// Whenever a land an opponent controls is tapped for mana, tap all lands that player controls that could produce any type of mana that land could produce.
this.addAbility(new ManaWebTriggeredAbility());
@ -155,7 +155,7 @@ class ManaWebeffect extends OneShotEffect {
}
}
if (mana.containsAny(opponentLandMana)) {
if (mana.containsAny(opponentLandMana, true)) {
tappedLands = opponentPermanent.tap(game) || tappedLands;
}
}