mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 22:42:03 -08:00
- Fixed #8199
This commit is contained in:
parent
800784dc70
commit
debf310697
1 changed files with 4 additions and 3 deletions
|
|
@ -160,8 +160,8 @@ class TheBookOfVileDarknessEffect extends OneShotEffect {
|
|||
|
||||
TheBookOfVileDarknessEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "create Vecna, a legendary 8/8 black Zombie God creature token " +
|
||||
"with indestructible and all triggered abilities of the exiled cards";
|
||||
staticText = "create Vecna, a legendary 8/8 black Zombie God creature token "
|
||||
+ "with indestructible and all triggered abilities of the exiled cards";
|
||||
}
|
||||
|
||||
private TheBookOfVileDarknessEffect(final TheBookOfVileDarknessEffect effect) {
|
||||
|
|
@ -181,7 +181,8 @@ class TheBookOfVileDarknessEffect extends OneShotEffect {
|
|||
}
|
||||
Token token = new VecnaToken();
|
||||
for (MageObjectReference mor : morSet) {
|
||||
Card card = mor.getCard(game);
|
||||
// the card object in the mor doesn't work, so the permanent object is used
|
||||
Permanent card = mor.getPermanentOrLKIBattlefield(game);
|
||||
if (card == null) {
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue