[CMR] Implemented Reyav, Master Smith

This commit is contained in:
Evan Kranzler 2020-11-07 10:53:16 -05:00
parent 5a58ea0602
commit 3585853968
3 changed files with 63 additions and 1 deletions

View file

@ -61,7 +61,7 @@ public class AttacksCreatureYouControlTriggeredAbility extends TriggeredAbilityI
Permanent sourcePermanent = game.getPermanent(event.getSourceId());
if (sourcePermanent != null && filter.match(sourcePermanent, sourceId, controllerId, game)) {
if (setTargetPointer) {
this.getEffects().setTargetPointer(new FixedTarget(event.getSourceId()));
this.getEffects().setTargetPointer(new FixedTarget(event.getSourceId(), game));
}
return true;
}