- Fixed Goblin Grenade, cannot cast it as an instant now.

- Fixed Thought Courier, Blightspeaker, Cackling Imp and Stern Judge.
This commit is contained in:
jendave
2011-08-06 02:46:17 +00:00
parent 33776bef16
commit 2114d9eaed
4 changed files with 84 additions and 3 deletions

View File

@@ -16201,7 +16201,7 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase();
CardList gobs = new CardList(AllZone.getZone(Constant.Zone.Play, card.getController()).getCards());
gobs = gobs.getType("Goblin");
return gobs.size()>0;
return super.canPlay() && gobs.size()>0;
}
public boolean canPlayAI()