From 84f9d8e01b745ed9d21037f33f740aeffa5cf712 Mon Sep 17 00:00:00 2001 From: Zzooouhh Date: Thu, 26 Oct 2017 23:20:03 +0200 Subject: [PATCH] Fixed effect duration --- Mage.Sets/src/mage/cards/o/OdricMasterTactician.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/o/OdricMasterTactician.java b/Mage.Sets/src/mage/cards/o/OdricMasterTactician.java index 006d4b64dbb..8b40563d9e0 100644 --- a/Mage.Sets/src/mage/cards/o/OdricMasterTactician.java +++ b/Mage.Sets/src/mage/cards/o/OdricMasterTactician.java @@ -131,8 +131,8 @@ class OdricMasterTacticianTriggeredAbility extends TriggeredAbilityImpl { class OdricMasterTacticianChooseBlockersEffect extends ContinuousRuleModifyingEffectImpl { public OdricMasterTacticianChooseBlockersEffect() { - super(Duration.EndOfTurn, Outcome.Benefit, false, false); - staticText = "Whenever {this} and at least three other creatures attack, you choose which creatures block this turn and how those creatures block"; + super(Duration.EndOfCombat, Outcome.Benefit, false, false); + staticText = "Whenever {this} and at least three other creatures attack, you choose which creatures block this combat and how those creatures block"; } public OdricMasterTacticianChooseBlockersEffect(final OdricMasterTacticianChooseBlockersEffect effect) { @@ -162,6 +162,7 @@ class OdricMasterTacticianChooseBlockersEffect extends ContinuousRuleModifyingEf game.informPlayers(source.getSourceObject(game).getIdName() + " didn't apply"); return false; } + watcher.copyCount--; watcher.copyCountApply = watcher.copyCount; Player blockController = game.getPlayer(source.getControllerId()); if (blockController != null) {