fixed Wicked Guardian drawing two cards instead of one (fixes #5996)

This commit is contained in:
Evan Kranzler 2019-09-24 08:23:26 -04:00
parent 6cc2472ed6
commit a2c4dc69d8

View file

@ -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;
} }
} }