From 4f1699a3eaaa9e2dff69ad89c35a3f90cd24ff07 Mon Sep 17 00:00:00 2001 From: "marcins78@gmail.com" Date: Sun, 13 Nov 2011 14:47:10 +0000 Subject: [PATCH] - "Uruk Stormer" now allows to take control of a site, if any other Uruk-hai kills a companion or ally. --- .../com/gempukku/lotro/cards/set4/isengard/Card4_198.java | 4 ++-- .../gemp-lotr-web/src/main/webapp/includes/changeLog.html | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set4/isengard/Card4_198.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set4/isengard/Card4_198.java index fc69b2c97..a1d45f9ff 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set4/isengard/Card4_198.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set4/isengard/Card4_198.java @@ -38,9 +38,9 @@ public class Card4_198 extends AbstractMinion { @Override public List getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) { if (effectResult.getType() == EffectResult.Type.KILL - && Filters.inSkirmish.accepts(game.getGameState(), game.getModifiersQuerying(), self)) { + && Filters.canSpot(game.getGameState(), game.getModifiersQuerying(), Filters.inSkirmish, Race.URUK_HAI)) { KillResult killResult = (KillResult) effectResult; - final Collection killedFPs = Filters.filter(killResult.getKilledCards(), game.getGameState(), game.getModifiersQuerying(), Filters.or(Filters.type(CardType.ALLY), Filters.type(CardType.COMPANION))); + final Collection killedFPs = Filters.filter(killResult.getKilledCards(), game.getGameState(), game.getModifiersQuerying(), Filters.or(CardType.ALLY, CardType.COMPANION)); List actions = new LinkedList(); for (int i = 0; i < killedFPs.size(); i++) { OptionalTriggerAction action = new OptionalTriggerAction(self); 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 4a7becfa6..a9c5346cb 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,7 @@
+13 Nov. 2011
+- "Uruk Stormer" now allows to take control of a site, if any other Uruk-hai kills a companion or ally.
+
 11 Nov. 2011
 - "Eowyn, Daughter of Eomund" now allows to play possession from hand, rather than discard with her ability.
 - "They Stole It" now always wounds the character in skirmish against Gollum, not only when the companion is wounded.