mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Frontier Siege - Fixed the dragon ability did not fire the fighting event.
Fixes #893
This commit is contained in:
parent
2f09b2859c
commit
6e80cb334a
1 changed files with 1 additions and 2 deletions
|
@ -157,8 +157,7 @@ class FrontierSiegeFightEffect extends OneShotEffect {
|
|||
&& target != null
|
||||
&& triggeredCreature.getCardType().contains(CardType.CREATURE)
|
||||
&& target.getCardType().contains(CardType.CREATURE)) {
|
||||
triggeredCreature.damage(target.getPower().getValue(), target.getId(), game, false, true);
|
||||
target.damage(triggeredCreature.getPower().getValue(), triggeredCreature.getId(), game, false, true);
|
||||
triggeredCreature.fight(target, source, game);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue