Fix to 19P24 "Brought Down from Inside"

Properly allows the Free Peoples to transfer this condition at the start of each skirmish
This commit is contained in:
PhallenCassidy
2018-03-10 23:14:11 -05:00
committed by GitHub
parent 6ec15002aa
commit 2a0204d569

View File

@@ -44,7 +44,7 @@ public class Card19_024 extends AbstractAttachable {
@Override
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.winsSkirmish(game, effectResult, self.getAttachedTo())) {
if (TriggerConditions.startOfPhase(game, effectResult, Phase.SKIRMISH)) {
OptionalTriggerAction action = new OptionalTriggerAction(self);
action.appendEffect(
new ChooseAndTransferAttachableEffect(action, playerId, self, Filters.any, Filters.and(Culture.ROHAN, Race.MAN)));