Skip to content

Commit

Permalink
fix bug where Gilt-Leaf Archdruid's ability can be activated when you…
Browse files Browse the repository at this point in the history
… have at least one druid
  • Loading branch information
melvinzhang committed Feb 14, 2015
1 parent 1c0d767 commit 7404d1c
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions release/Magarena/scripts/Gilt_Leaf_Archdruid.groovy
Expand Up @@ -35,13 +35,12 @@ def AN_UNTAPPED_DRUID_YOU_CONTROL = new MagicTargetChoice(UNTAPPED_DRUID_YOU_CON
@Override
public Iterable<MagicEvent> getCostEvent(final MagicPermanent source) {
return [
new MagicTapPermanentEvent(source, AN_UNTAPPED_DRUID_YOU_CONTROL),
new MagicTapPermanentEvent(source, AN_UNTAPPED_DRUID_YOU_CONTROL),
new MagicTapPermanentEvent(source, AN_UNTAPPED_DRUID_YOU_CONTROL),
new MagicTapPermanentEvent(source, AN_UNTAPPED_DRUID_YOU_CONTROL),
new MagicTapPermanentEvent(source, AN_UNTAPPED_DRUID_YOU_CONTROL),
new MagicTapPermanentEvent(source, AN_UNTAPPED_DRUID_YOU_CONTROL),
new MagicTapPermanentEvent(source, AN_UNTAPPED_DRUID_YOU_CONTROL)
new MagicRepeatedPermanentsEvent(
source,
AN_UNTAPPED_DRUID_YOU_CONTROL,
7,
MagicChainEventFactory.Tap
)
];
}

Expand Down

0 comments on commit 7404d1c

Please sign in to comment.