mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
- Fixed #6049
This commit is contained in:
parent
1246c55c5c
commit
c4de13ac17
1 changed files with 3 additions and 3 deletions
|
|
@ -96,8 +96,8 @@ class RepeatedReverberationTriggeredAbility extends DelayedTriggeredAbility {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getRule() {
|
public String getRule() {
|
||||||
return "When you next cast an instant spell, cast a sorcery spell, or activate a loyalty ability this turn, " +
|
return "When you next cast an instant spell, cast a sorcery spell, or activate a loyalty ability this turn, "
|
||||||
"copy that spell or ability twice. You may choose new targets for the copies.";
|
+ "copy that spell or ability twice. You may choose new targets for the copies.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -118,7 +118,7 @@ class RepeatedReverberationEffect extends OneShotEffect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
Player controller = game.getPlayer(source.getControllerId());
|
Player controller = game.getPlayer(source.getControllerId());
|
||||||
Permanent sourcePermanent = game.getPermanent(stackAbility.getStackAbility().getSourceId());
|
Permanent sourcePermanent = game.getPermanentOrLKIBattlefield(stackAbility.getStackAbility().getSourceId());
|
||||||
if (controller == null || sourcePermanent == null) {
|
if (controller == null || sourcePermanent == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue