mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
- little fix to outcome on Drakuseth, Maw of Flames
This commit is contained in:
parent
88ca9b1829
commit
3dfb7ea0da
1 changed files with 1 additions and 3 deletions
|
@ -64,7 +64,7 @@ public final class DrakusethMawOfFlames extends CardImpl {
|
|||
class DrakusethMawOfFlamesEffect extends OneShotEffect {
|
||||
|
||||
DrakusethMawOfFlamesEffect() {
|
||||
super(Outcome.Benefit);
|
||||
super(Outcome.Damage);
|
||||
staticText = "it deals 4 damage to any target and 3 damage to each of "
|
||||
+ "up to two other targets.";
|
||||
}
|
||||
|
@ -93,12 +93,10 @@ class DrakusethMawOfFlamesEffect extends OneShotEffect {
|
|||
Permanent permanent = game.getPermanent(targetId);
|
||||
if (permanent != null) {
|
||||
permanent.damage(damage, source.getSourceId(), game);
|
||||
return;
|
||||
}
|
||||
Player player = game.getPlayer(targetId);
|
||||
if (player != null) {
|
||||
player.damage(damage, source.getSourceId(), game);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue