Fix shapesharer's duration.

This commit is contained in:
Nathaniel Brandes 2016-09-09 11:58:04 -07:00
parent bb6faa39c1
commit 678a46dba8

View file

@ -109,7 +109,7 @@ class ShapesharerEffect extends OneShotEffect {
if (copyTo != null) {
Permanent copyFrom = game.getPermanentOrLKIBattlefield(ability.getTargets().get(1).getFirstTarget());
if (copyFrom != null) {
game.copyPermanent(Duration.EndOfTurn, copyFrom, copyTo.getId(), ability, new EmptyApplyToPermanent());
game.copyPermanent(Duration.UntilYourNextTurn, copyFrom, copyTo.getId(), ability, new EmptyApplyToPermanent());
}
}
return true;