- If a double strike creature with trample gets blocked and it kills the blocker with first strike damage, afterward it should deal full regular damage to the player.

- Fixed a bug with Propaganda where it would check multiple times per attack turn. 
- AI Bibery also shouldn't grab a Groundbreaker anymore.
- Updated Prodigal Sorcerer to use abDamageTgtCP.
This commit is contained in:
jendave
2011-08-06 03:29:23 +00:00
parent a5b843a973
commit 3da25af6a3
5 changed files with 50 additions and 49 deletions

View File

@@ -9134,7 +9134,7 @@ public class CardFactory implements NewConstants {
all = all.filter(new CardListFilter(){
public boolean addCard(Card c)
{
return c.isCreature() && !c.getName().equals("Ball Lightning");
return c.isCreature() && !c.getName().equals("Ball Lightning") && !c.getName().equals("Groundbreaker");
}
});