fix crash due to not checking for result of MagicMayChoice

master
melvin 2013-10-23 10:18:23 +08:00
parent 9876aece75
commit f05c001e18
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
if (MagicCondition.LEAST_FIVE_OTHER_MOUNTAINS.accept(event.getRefPermanent()) == false) {
if (MagicCondition.LEAST_FIVE_OTHER_MOUNTAINS.accept(event.getRefPermanent()) == false || event.isNo()) {
return;
}
event.processTarget(game,new MagicTargetAction() {