[THS] Fix Sealock Monster effect duration

This commit is contained in:
Alex W. Jackson 2022-02-19 21:51:07 -05:00
parent d3ebac1776
commit 9424d98339

View file

@ -40,7 +40,7 @@ public final class SealockMonster extends CardImpl {
// When Sealock Monster becomes monstrous, target land becomes an island in addition to its other types.
Ability ability = new BecomesMonstrousSourceTriggeredAbility(
new AddCardSubTypeTargetEffect(SubType.ISLAND, Duration.EndOfTurn)
new AddCardSubTypeTargetEffect(SubType.ISLAND, Duration.Custom)
);
ability.addTarget(new TargetLandPermanent());
this.addAbility(ability);