From fc14cf3c99b827ae0edcd422514e33127dba6873 Mon Sep 17 00:00:00 2001 From: "marcins78@gmail.com" Date: Mon, 23 Apr 2012 22:50:48 +0000 Subject: [PATCH] - 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). --- .../com/gempukku/lotro/logic/effects/AddThreatsEffect.java | 2 +- .../gemp-lotr-web/src/main/webapp/includes/changeLog.html | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/logic/effects/AddThreatsEffect.java b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/logic/effects/AddThreatsEffect.java index d1de09120..e87ef1bac 100644 --- a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/logic/effects/AddThreatsEffect.java +++ b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/logic/effects/AddThreatsEffect.java @@ -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); } } diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html b/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html index f50d13df6..05afbaf79 100644 --- a/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html +++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html @@ -1,4 +1,8 @@
+23 Apr. 2012
+- 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).
+
 19 Apr. 2012
 - "Rope and Winch" now adds +2 Strength, instead of +1 for each extra card discarded.