From e249036e9232b62684212e51d96fcb6da0cce4ee Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Mon, 13 Apr 2020 07:47:08 -0400 Subject: [PATCH] fixed Wingspan Mentor activation cost --- Mage.Sets/src/mage/cards/w/WingspanMentor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/w/WingspanMentor.java b/Mage.Sets/src/mage/cards/w/WingspanMentor.java index fbf60ba7063..ef784e55b1d 100644 --- a/Mage.Sets/src/mage/cards/w/WingspanMentor.java +++ b/Mage.Sets/src/mage/cards/w/WingspanMentor.java @@ -54,7 +54,7 @@ public final class WingspanMentor extends CardImpl { // {2}{U}, {T}: Put a +1/+1 counter on each creature you control with flying. ability = new SimpleActivatedAbility( - new AddCountersAllEffect(CounterType.P1P1.createInstance(), filter2), new ManaCostsImpl("{2}{R}") + new AddCountersAllEffect(CounterType.P1P1.createInstance(), filter2), new ManaCostsImpl("{2}{U}") ); ability.addCost(new TapSourceCost()); this.addAbility(ability);