- Drawing cards now correctly triggers "Verily I Come"

This commit is contained in:
marcins78@gmail.com
2011-10-15 18:09:48 +00:00
parent 440d0842b5
commit 082f0554fd
3 changed files with 3 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ public class Card1_349 extends AbstractSite {
// Play from deck // Play from deck
possibleEffects.add( possibleEffects.add(
new ChooseAndPlayCardFromDeckEffect(playerId, Filters.name("Balrog"), -6)); new ChooseAndPlayCardFromDeckEffect(playerId, Filters.name("The Balrog"), -6));
action.appendEffect( action.appendEffect(
new ChoiceEffect(action, playerId, possibleEffects)); new ChoiceEffect(action, playerId, possibleEffects));

View File

@@ -21,7 +21,7 @@ public class DrawCardEffect extends AbstractEffect {
@Override @Override
public EffectResult.Type getType() { public EffectResult.Type getType() {
return null; return EffectResult.Type.DRAW_CARD_OR_PUT_INTO_HAND;
} }
@Override @Override

View File

@@ -2,6 +2,7 @@
<b>15 Oct. 2011</b> <b>15 Oct. 2011</b>
- Permanents will no longer highlight in had if they have Response action on them - Permanents will no longer highlight in had if they have Response action on them
- Fixed all the cards that were supposed to discard themselves on use, but did not (i.e. "Gondor Bowmen") - Fixed all the cards that were supposed to discard themselves on use, but did not (i.e. "Gondor Bowmen")
- Drawing cards now correctly triggers "Verily I Come"
<b>14 Oct. 2011</b> <b>14 Oct. 2011</b>
- Uruviel and all other copying site allies should now correctly have modifiers off sites - Uruviel and all other copying site allies should now correctly have modifiers off sites