From 16b10c06d2577acf23ba5f707cb757f84c918b72 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 20 Sep 2013 08:39:53 +0200 Subject: [PATCH] * Warriors' Lesson - Fixed that you can correctly draw 1 card instead of 2 if a creature deals combat damage to a palyer. --- Mage.Sets/src/mage/sets/theros/WarriorsLesson.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/theros/WarriorsLesson.java b/Mage.Sets/src/mage/sets/theros/WarriorsLesson.java index 6650b3c404..17c1cf363e 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)); }