- "Cliffs of Emyn Muil" should have a default value of 2 for removing burdens.

This commit is contained in:
marcins78
2012-11-27 10:46:17 +00:00
parent 8b3ff2dd61
commit 3b42e1e032
2 changed files with 4 additions and 1 deletions

View File

@@ -41,7 +41,7 @@ public class Card4_299 extends AbstractPermanent {
final RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendEffect(
new PlayoutDecisionEffect(self.getOwner(),
new IntegerAwaitingDecision(1, "How many burdens do you wish to remove?", 0, 2) {
new IntegerAwaitingDecision(1, "How many burdens do you wish to remove?", 0, 2, 2) {
@Override
public void decisionMade(String result) throws DecisionResultInvalidException {
int count = getValidatedResult(result);

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>27 Nov. 2012</b>
- "Cliffs of Emyn Muil" should have a default value of 2 for removing burdens.
<b>26 Nov. 2012</b>
- "Arwen's Fate" should no longer cause the game to be cancelled.