- Finally fixed the Harrowdale (fingers crossed), added test to simulate different movement patterns.

This commit is contained in:
marcins78
2012-10-24 09:19:22 +00:00
parent 0c171a68a6
commit 3e50e0054a

View File

@@ -35,8 +35,9 @@ public class Card11_243 extends AbstractNewSite {
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, final PhysicalCard self) {
if (game.getModifiersQuerying().getUntilEndOfPhaseLimitCounter(self, Phase.REGROUP).getUsedLimit() < 1) {
game.getActionsEnvironment().addUntilEndOfPhaseActionProxy(
if (game.getModifiersQuerying().getUntilStartOfPhaseLimitCounter(self, Phase.REGROUP).getUsedLimit() < 1
&& !game.getGameState().getCurrentPhase().equals(Phase.REGROUP)) {
game.getActionsEnvironment().addUntilStartOfPhaseActionProxy(
new AbstractActionProxy() {
private Set<Integer> _minionsMarked = new HashSet<Integer>();