From 499e7fd8dd9cb45a7c78a7d872ec8023309dfe3a Mon Sep 17 00:00:00 2001 From: dmasalin Date: Fri, 12 Jun 2015 15:39:58 -0300 Subject: [PATCH] Update Card15_113.java Currently, Orcish Camp is revealing the top card of draw deck instead of the bottom card. I changed the Effect to reveal the bottom cards, but am not 100% sure if this is currently an executable effect. If not, please just let me know and I can try to code it the same way Underdeeps of Moria (set1/ moria/ Card1_200.java) currently works (uses "unresponableeffect") Best, dmaz --- .../java/com/gempukku/lotro/cards/set15/orc/Card15_113.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set15/orc/Card15_113.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set15/orc/Card15_113.java index a60985d48..bdd417e35 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set15/orc/Card15_113.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set15/orc/Card15_113.java @@ -50,7 +50,7 @@ public class Card15_113 extends AbstractPermanent { action.appendCost( new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Culture.ORC, Race.ORC)); action.appendEffect( - new RevealTopCardsOfDrawDeckEffect(self, playerId, 1) { + new RevealBottomCardsOfDrawDeckEffect(self, playerId, 1) { @Override protected void cardsRevealed(List revealedCards) { for (PhysicalCard card : revealedCards) {