- "Bill Ferny" and other minions not assignable by FP player now should be assignable by Shadow player correctly.

This commit is contained in:
marcins78@gmail.com
2012-03-26 06:52:31 +00:00
parent 421a6ebd59
commit 9eedb3cb6a
2 changed files with 3 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ public class FreePeoplePlayerAssignsMinionsGameProcess implements GameProcess {
public void decisionMade(String result) throws DecisionResultInvalidException {
Map<PhysicalCard, Set<PhysicalCard>> assignments = getAssignmentsBasedOnResponse(result);
Set<PhysicalCard> unassignedMinions = new HashSet<PhysicalCard>(minions);
Set<PhysicalCard> unassignedMinions = new HashSet<PhysicalCard>(Filters.filterActive(gameState, game.getModifiersQuerying(), CardType.MINION));
// Validate minion count (Defender)
for (PhysicalCard freeCard : assignments.keySet()) {
Set<PhysicalCard> minionsAssigned = assignments.get(freeCard);
@@ -76,7 +76,7 @@ public class FreePeoplePlayerAssignsMinionsGameProcess implements GameProcess {
}
});
} else {
_leftoverMinions = new HashSet<PhysicalCard>();
_leftoverMinions = new HashSet<PhysicalCard>(Filters.filterActive(gameState, game.getModifiersQuerying(), CardType.MINION));
}
}
});

View File

@@ -7,6 +7,7 @@ and discard).
if he/she wants to prevent it.
- "Morgul Regiment" now allows to exert the same companion multiple times.
- "Parapet" activated ability now requires to spot 2 ROHAN Man, rather than just 1.
- "Bill Ferny" and other minions not assignable by FP player now should be assignable by Shadow player correctly.
<b>16 Mar. 2012</b>
- When "Mountain-troll" is played with discarding 5 minions, now it should properly gain Fierce.