mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 02:52:02 -08:00
fix Light Up the Night dealing double damage
This commit is contained in:
parent
c838c8ad51
commit
bbd0fa2ffb
1 changed files with 1 additions and 3 deletions
|
|
@ -16,7 +16,6 @@ import mage.game.Game;
|
||||||
import mage.game.permanent.Permanent;
|
import mage.game.permanent.Permanent;
|
||||||
import mage.players.Player;
|
import mage.players.Player;
|
||||||
import mage.target.common.TargetAnyTarget;
|
import mage.target.common.TargetAnyTarget;
|
||||||
import mage.util.CardUtil;
|
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
|
@ -69,8 +68,7 @@ class LightUpTheNightEffect extends OneShotEffect {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
// Normal cast + Flashback cast
|
int damage = GetXValue.instance.calculate(game, source, this);
|
||||||
int damage = CardUtil.getSourceCostsTag(game, source, "X", 0) + GetXValue.instance.calculate(game, source, this);
|
|
||||||
UUID targetId = getTargetPointer().getFirst(game, source);
|
UUID targetId = getTargetPointer().getFirst(game, source);
|
||||||
Player player = game.getPlayer(targetId);
|
Player player = game.getPlayer(targetId);
|
||||||
if (player != null) {
|
if (player != null) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue