mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08:00
fixed Wicked Guardian drawing two cards instead of one (fixes #5996)
This commit is contained in:
parent
6cc2472ed6
commit
a2c4dc69d8
1 changed files with 1 additions and 1 deletions
|
|
@ -87,6 +87,6 @@ class WickedGuardianEffect extends OneShotEffect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
permanent.damage(2, source.getSourceId(), game);
|
permanent.damage(2, source.getSourceId(), game);
|
||||||
return player.drawCards(2, game) > 0;
|
return player.drawCards(1, game) > 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue