- Fixed a rare bug with the keyword: When CARDNAME enters the battlefield, return a land you control to its owner's hand.

- Added Noggle Bridgebreaker.
This commit is contained in:
jendave
2011-08-06 07:19:53 +00:00
parent e5e7d4fcaf
commit f9527723a3
4 changed files with 15 additions and 4 deletions

View File

@@ -668,10 +668,11 @@ public class CardFactory implements NewConstants {
public void execute() {
PlayerZone play = AllZone.getZone(Constant.Zone.Play, card.getController());
CardList choice = new CardList(play.getCards()).getType("Land");
AllZone.InputControl.setInput(CardFactoryUtil.input_targetSpecific(ability, choice,
if (!choice.isEmpty()) {
AllZone.InputControl.setInput(CardFactoryUtil.input_targetSpecific(ability, choice,
"Select a land you control.", false, false));
ButtonUtil.disableAll();
ButtonUtil.disableAll();
}
}//execute()
};//Command
card.addComesIntoPlayCommand(intoPlay);