1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 01:08:59 -09:00

fixed Volrath, the Shapestealer's effect duration

This commit is contained in:
Evan Kranzler 2019-08-07 07:44:52 -04:00
parent 61a30ad593
commit e98600bec3

View file

@ -103,7 +103,7 @@ class VolrathTheShapestealerEffect extends OneShotEffect {
newBluePrint.assignNewId();
ApplyToPermanent applier = new VolrathTheShapestealerApplier();
applier.apply(game, newBluePrint, source, volrathTheShapestealer.getId());
CopyEffect copyEffect = new CopyEffect(Duration.Custom, newBluePrint, volrathTheShapestealer.getId());
CopyEffect copyEffect = new CopyEffect(Duration.UntilYourNextTurn, newBluePrint, volrathTheShapestealer.getId());
copyEffect.newId();
copyEffect.setApplier(applier);
Ability newAbility = source.copy();