mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
* Permeating Mass - Fixed that the copy effect did only work, if Permeating Mass did not die from combat damge.
This commit is contained in:
parent
c264da1cca
commit
bd70f923b7
2 changed files with 10 additions and 11 deletions
|
|
@ -88,9 +88,9 @@ class PermeatingMassEffect extends OneShotEffect {
|
||||||
public boolean apply(Game game, Ability ability) {
|
public boolean apply(Game game, Ability ability) {
|
||||||
Permanent copyTo = game.getPermanentOrLKIBattlefield(getTargetPointer().getFirst(game, ability));
|
Permanent copyTo = game.getPermanentOrLKIBattlefield(getTargetPointer().getFirst(game, ability));
|
||||||
if (copyTo != null) {
|
if (copyTo != null) {
|
||||||
Permanent copyFrom = game.getPermanent(ability.getSourceId());
|
Permanent copyFrom = (Permanent) ability.getSourceObject(game);
|
||||||
if (copyFrom != null) {
|
if (copyFrom != null) {
|
||||||
game.copyPermanent(Duration.WhileOnBattlefield, copyFrom, copyTo.getId(), ability, new EmptyApplyToPermanent());
|
game.copyPermanent(Duration.Custom, copyFrom, copyTo.getId(), ability, new EmptyApplyToPermanent());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ package org.mage.test.cards.single.emn;
|
||||||
|
|
||||||
import mage.constants.PhaseStep;
|
import mage.constants.PhaseStep;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
import mage.game.permanent.Permanent;
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||||
|
|
||||||
|
|
@ -33,7 +32,7 @@ public class PermeatingMassTest extends CardTestPlayerBase {
|
||||||
|
|
||||||
assertLife(playerB, 20);
|
assertLife(playerB, 20);
|
||||||
assertGraveyardCount(playerB, "Permeating Mass", 1);
|
assertGraveyardCount(playerB, "Permeating Mass", 1);
|
||||||
Permanent hilly = getPermanent("Hill Giant", playerA);
|
assertPermanentCount(playerA, "Permeating Mass", 1);
|
||||||
assertPowerToughness(playerA, "Hill Giant", 1, 3);
|
assertPowerToughness(playerA, "Permeating Mass", 1, 3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue