mirror of
https://github.com/correl/mage.git
synced 2025-04-09 09:11:05 -09:00
Fix [INV] Pulse of Llanowar effect (#10221)
This commit is contained in:
parent
efad55bac3
commit
2265091a95
1 changed files with 2 additions and 2 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue