From 516c84de1a90f3d20172464bb284af9fb24f4a6a Mon Sep 17 00:00:00 2001 From: "marcin.sciesinski" Date: Thu, 22 Aug 2019 21:59:15 -0700 Subject: [PATCH] Refining returned action types --- .../java/com/gempukku/lotro/game/LotroCardBlueprint.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/game/LotroCardBlueprint.java b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/game/LotroCardBlueprint.java index 0001fd195..375e733e0 100644 --- a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/game/LotroCardBlueprint.java +++ b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/game/LotroCardBlueprint.java @@ -69,14 +69,14 @@ public interface LotroCardBlueprint { public boolean checkPlayRequirements(LotroGame game, PhysicalCard self); - public List getPhaseActionsInPlay(String playerId, LotroGame game, PhysicalCard self); - public List getPhaseActionsInHand(String playerId, LotroGame game, PhysicalCard self); - public List getPhaseActionsFromStacked(String playerId, LotroGame game, PhysicalCard self); - public List getPhaseActionsFromDiscard(String playerId, LotroGame game, PhysicalCard self); + public List getPhaseActionsInPlay(String playerId, LotroGame game, PhysicalCard self); + + public List getPhaseActionsFromStacked(String playerId, LotroGame game, PhysicalCard self); + public List getRequiredBeforeTriggers(LotroGame game, Effect effect, PhysicalCard self); public List getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self);