Files
forge/src
jendave e2ab0b4eab - Fixed the Wall of Reverence bug. It appears that the AI was targeting the first creature to come into play:
CardListUtil.sortAttack(validTargets);
Card c = creats.get(0);

rather than the creature with the highest power:

Card c = validTargets.get(0);
2011-08-06 05:48:36 +00:00
..
2011-08-06 05:32:16 +00:00
2011-08-06 05:16:35 +00:00
2011-08-06 03:43:32 +00:00