- "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:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
@@ -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".
|
||||
|
||||
|
||||
Reference in New Issue
Block a user