- "Saruman, Mind of Metal" adds twilight at the beginning of Maneuver phase, not end of Assignment (per card text).

This commit is contained in:
marcins78
2013-03-12 12:05:57 +00:00
parent b63a3875dd
commit e7ee8a4811
2 changed files with 2 additions and 1 deletions

View File

@@ -26,6 +26,7 @@ Lady of Imladris" with completely different text (per card text).
- "Treachery Runs Deep" is no longer a Spell (per card text).
- "Ithilien Wildwood" now makes FP player to wound the companions, not Shadow player.
- "Barad-Dur Captain" now has stats - Cost:5, Strength: 13 (per card text).
- "Saruman, Mind of Metal" adds twilight at the beginning of Maneuver phase, not end of Assignment (per card text).
<b>11 Mar. 2013</b>
- Second Edition is playable now.

View File

@@ -38,7 +38,7 @@ public class Card20_237 extends AbstractMinion {
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.endOfPhase(game, effectResult, Phase.ASSIGNMENT)) {
if (TriggerConditions.startOfPhase(game, effectResult, Phase.MANEUVER)) {
RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendEffect(
new AddTwilightEffect(self, game.getGameState().getThreats()));