- Adding 0 threats is now possible and legal, hence playing "Plotting" will not fail now, if you can't add any threats anymore (number of threats is equal to or greater than number of companions).

This commit is contained in:
marcins78@gmail.com
2012-04-23 22:50:48 +00:00
parent f097b2471a
commit fc14cf3c99
2 changed files with 5 additions and 1 deletions

View File

@@ -65,6 +65,6 @@ public class AddThreatsEffect extends AbstractEffect {
return new FullEffectResult(toAdd == count, toAdd == count);
}
return new FullEffectResult(false, false);
return new FullEffectResult(count == 0, count == 0);
}
}

View File

@@ -1,4 +1,8 @@
<pre style="font-size:80%">
<b>23 Apr. 2012</b>
- Adding 0 threats is now possible and legal, hence playing "Plotting" will not fail now, if you can't add any threats
anymore (number of threats is equal to or greater than number of companions).
<b>19 Apr. 2012</b>
- "Rope and Winch" now adds +2 Strength, instead of +1 for each extra card discarded.