- Fixed Pit Scorpion.

- Fixed some of the "Sacrifice a creature" spells ("destroy" effects would sometimes not happen). 
- Added a few cards: Propaganda, Ghostly Prison, Windborn Muse, Arctic Nishoba, Peacekeeper, Marsh Viper.
- Yet another fix to Force of Will.
This commit is contained in:
jendave
2011-08-06 03:10:05 +00:00
parent 739b50e2dd
commit 9f3fdf429f
11 changed files with 197 additions and 30 deletions

View File

@@ -17904,7 +17904,8 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase();
public void selectButtonCancel() {stop();}
public void selectCard(Card c, PlayerZone zone)
{
if(CardUtil.getColors(c).contains(Constant.Color.Blue) && zone.is(Constant.Zone.Hand))
if(CardUtil.getColors(c).contains(Constant.Color.Blue) && zone.is(Constant.Zone.Hand) &&
!c.equals(card))
{
AllZone.GameAction.removeFromGame(c);
String player = card.getController();