diff --git a/Mage.Sets/src/mage/sets/theros/WarriorsLesson.java b/Mage.Sets/src/mage/sets/theros/WarriorsLesson.java index 17c1cf363ed..cb8f07dc498 100644 --- a/Mage.Sets/src/mage/sets/theros/WarriorsLesson.java +++ b/Mage.Sets/src/mage/sets/theros/WarriorsLesson.java @@ -52,7 +52,7 @@ public class WarriorsLesson extends CardImpl { // Until end of turn, up to two target creatures you control each gain "Whenever this creature deals combat damage to a player, draw a card." Ability ability = new DealsDamageToAPlayerTriggeredAbility(new DrawCardControllerEffect(1),false); - this.getSpellAbility().addEffect(new GainAbilityTargetEffect(ability, Duration.EndOfGame)); + this.getSpellAbility().addEffect(new GainAbilityTargetEffect(ability, Duration.EndOfTurn)); this.getSpellAbility().addTarget(new TargetCreaturePermanent(0,2)); }