mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
[AFR] fixed Robe of Stars phasing itself out (fixes #8196)
This commit is contained in:
parent
f2ae9f1662
commit
a2d3463fb2
1 changed files with 1 additions and 1 deletions
|
|
@ -72,6 +72,6 @@ class RobeOfStarsEffect extends OneShotEffect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
Permanent equipped = game.getPermanent(permanent.getAttachedTo());
|
Permanent equipped = game.getPermanent(permanent.getAttachedTo());
|
||||||
return equipped != null && permanent.phaseOut(game);
|
return equipped != null && equipped.phaseOut(game);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue