- "Host of Udun" now correctly reduces the cost if threats are removed, when card could be played for full cost.

This commit is contained in:
marcins78@gmail.com
2012-06-05 10:38:43 +00:00
parent 3de57a9ac1
commit 43f7c1acfb
2 changed files with 10 additions and 5 deletions

View File

@@ -49,11 +49,13 @@ public class RemoveThreatsToDiscountEffect extends AbstractSubActionEffect imple
@Override
public void decisionMade(String result) throws DecisionResultInvalidException {
int threats = getValidatedResult(result);
SubAction subAction = new SubAction(_action);
subAction.appendEffect(
new RemoveThreatsEffect(_action.getActionSource(), threats));
processSubAction(game, subAction);
_threatsRemoved = _minimalThreatsToRemove;
if (threats > 0) {
SubAction subAction = new SubAction(_action);
subAction.appendEffect(
new RemoveThreatsEffect(_action.getActionSource(), threats));
processSubAction(game, subAction);
_threatsRemoved = threats;
}
}
}
);

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>5 Jun. 2012</b>
- "Host of Udun" now correctly reduces the cost if threats are removed, when card could be played for full cost.
<b>4 Jun. 2012</b>
- Reworked "Orkish Sneak".