This commit is contained in:
jeffwadsworth 2019-11-23 20:38:07 -06:00
parent 1246c55c5c
commit c4de13ac17

View file

@ -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;
} }