diff --git a/Mage.Sets/src/mage/sets/theros/WarriorsLesson.java b/Mage.Sets/src/mage/sets/theros/WarriorsLesson.java index 6650b3c4049..17c1cf363ed 100644 --- a/Mage.Sets/src/mage/sets/theros/WarriorsLesson.java +++ b/Mage.Sets/src/mage/sets/theros/WarriorsLesson.java @@ -51,7 +51,7 @@ public class WarriorsLesson extends CardImpl { this.color.setGreen(true); // 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(2),false); + Ability ability = new DealsDamageToAPlayerTriggeredAbility(new DrawCardControllerEffect(1),false); this.getSpellAbility().addEffect(new GainAbilityTargetEffect(ability, Duration.EndOfGame)); this.getSpellAbility().addTarget(new TargetCreaturePermanent(0,2)); }