mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00: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
|
||||
public String getRule() {
|
||||
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.";
|
||||
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.";
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -118,7 +118,7 @@ class RepeatedReverberationEffect extends OneShotEffect {
|
|||
return false;
|
||||
}
|
||||
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) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue