From 10a664cc6f21f0238f1d7a9fc650994e930d8a38 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sat, 9 Aug 2014 19:20:47 +0200 Subject: [PATCH] * Sage of Hours - Deactivated remove counters ability for AI to prevent that AI uses it over and aver again. --- Mage.Sets/src/mage/sets/journeyintonyx/SageOfHours.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/journeyintonyx/SageOfHours.java b/Mage.Sets/src/mage/sets/journeyintonyx/SageOfHours.java index 397b86445a4..83574ae86e4 100644 --- a/Mage.Sets/src/mage/sets/journeyintonyx/SageOfHours.java +++ b/Mage.Sets/src/mage/sets/journeyintonyx/SageOfHours.java @@ -127,7 +127,7 @@ class SageOfHoursCost extends CostImpl { class SageOfHoursEffect extends OneShotEffect { public SageOfHoursEffect() { - super(Outcome.GainLife); + super(Outcome.AIDontUseIt); // AI uses it endless therefore deactivated this.staticText = "For each five counters removed this way, take an extra turn after this one"; }