- "Sneaking!" will now correctly heal Smeagol, if it's skirmishing a minion(s) of higher or equal vitality.

This commit is contained in:
marcins78@gmail.com
2011-12-22 04:01:58 +00:00
parent 2a4d197b20
commit 6e298fd0f9
2 changed files with 2 additions and 1 deletions

View File

@@ -49,6 +49,6 @@ public class Card7_073 extends AbstractEvent {
int minionVitality = 0;
for (PhysicalCard minion : Filters.filterActive(game.getGameState(), game.getModifiersQuerying(), Filters.inSkirmishAgainst(smeagol)))
minionVitality += game.getModifiersQuerying().getVitality(game.getGameState(), minion);
return smeagolVitality >= minionVitality;
return smeagolVitality > minionVitality;
}
}

View File

@@ -1,6 +1,7 @@
<pre style="font-size:80%">
<b>22 Dec. 2011</b>
- "Valley of the Silverlode" should not correctly allow to heal every Hobbit companion.
- "Sneaking!" will now correctly heal Smeagol, if it's skirmishing a minion(s) of higher or equal vitality.
<b>19 Dec. 2011</b>
- "Chamber of Mazarbul" now has an Underground keyword.