mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 13:19:18 -08:00
* Fixed a bug were copied abilites (e.g. by Progenitor Mimic) did not use the correct controller after the control of the copying permanent changed (e.g. by Capitivating Vampire).
This commit is contained in:
parent
3184252d54
commit
4b0d027847
3 changed files with 9 additions and 2 deletions
|
|
@ -77,9 +77,9 @@ public class ProgenitorMimic extends CardImpl {
|
|||
new SourceMatchesFilterCondition(filter),
|
||||
"At the beginning of your upkeep, if this creature isn't a token, put a token onto the battlefield that's a copy of this creature.")
|
||||
);
|
||||
effect = new CopyPermanentEffect();
|
||||
effect = new CopyPermanentEffect(applier);
|
||||
effect.setText("as a copy of any creature on the battlefield except it gains \"At the beginning of your upkeep, if this creature isn't a token, put a token onto the battlefield that's a copy of this creature.\"");
|
||||
this.addAbility(new EntersBattlefieldAbility(new CopyPermanentEffect(applier), true));
|
||||
this.addAbility(new EntersBattlefieldAbility(effect, true));
|
||||
}
|
||||
|
||||
public ProgenitorMimic(final ProgenitorMimic card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue