mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
[KHM] fixed Surtland Flinger not sacrificing the chosen creature (fixes #7554)
This commit is contained in:
parent
78bae348e8
commit
6b25dac969
1 changed files with 3 additions and 0 deletions
|
@ -86,6 +86,9 @@ class SurtlandFlingerEffect extends OneShotEffect {
|
|||
power *= 2;
|
||||
}
|
||||
power = Math.max(power, 0);
|
||||
if (!permanent.sacrifice(source, game)) {
|
||||
return false;
|
||||
}
|
||||
ReflexiveTriggeredAbility ability = new ReflexiveTriggeredAbility(
|
||||
new DamageTargetEffect(power), false, rule
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue