mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
[C21] fixed Keen Duelist not causing life loss (fixes #7846)
This commit is contained in:
parent
6ffc59d760
commit
b5cef11c8c
1 changed files with 2 additions and 2 deletions
|
@ -74,10 +74,10 @@ class KeenDuelistEffect extends OneShotEffect {
|
|||
Card theirCard = opponent.getLibrary().getFromTop(game);
|
||||
cards.add(theirCard);
|
||||
controller.revealCards(source, cards, game);
|
||||
if (theirCard != null && theirCard.getManaValue() < 1) {
|
||||
if (theirCard != null && theirCard.getManaValue() > 0) {
|
||||
controller.loseLife(theirCard.getManaValue(), game, source, false);
|
||||
}
|
||||
if (myCard != null && myCard.getManaValue() < 1) {
|
||||
if (myCard != null && myCard.getManaValue() > 0) {
|
||||
opponent.loseLife(myCard.getManaValue(), game, source, false);
|
||||
}
|
||||
controller.moveCards(cards, Zone.HAND, source, game);
|
||||
|
|
Loading…
Reference in a new issue