1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-09 09:11:05 -09:00

Fix [INV] Pulse of Llanowar effect ()

This commit is contained in:
xenohedron 2023-04-20 18:27:02 -04:00 committed by GitHub
parent efad55bac3
commit 2265091a95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,7 +67,7 @@ class PulseOfLlanowarReplacementEffect extends ReplacementEffectImpl {
Mana mana = manaEvent.getMana();
new AddManaOfAnyColorEffect(mana.count()).apply(game, source);
mana.setToMana(new Mana(0, 0, 0, 0, 0, 0, 0, 0));
return true;
return false;
}
@Override
@ -78,6 +78,6 @@ class PulseOfLlanowarReplacementEffect extends ReplacementEffectImpl {
@Override
public boolean applies(GameEvent event, Ability source, Game game) {
Permanent permanent = ((TappedForManaEvent) event).getPermanent();
return permanent != null && permanent.isLand(game) && permanent.isControlledBy(source.getControllerId());
return permanent != null && permanent.isLand(game) && permanent.isBasic() && permanent.isControlledBy(source.getControllerId());
}
}