mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00: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;
|
||||
}
|
||||
permanent.damage(2, source.getSourceId(), game);
|
||||
return player.drawCards(2, game) > 0;
|
||||
return player.drawCards(1, game) > 0;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue