For now, if card only has 1 activated ability, don't show menu even if cost is automatic and undoable

This commit is contained in:
drdev
2013-11-15 09:47:24 +00:00
parent e0df16ee17
commit 6e585a7afa

View File

@@ -130,6 +130,7 @@ public abstract class AbilityActivated extends SpellAbility implements java.io.S
/** {@inheritDoc} */
@Override
public boolean promptIfOnlyPossibleAbility() {
return !this.isManaAbility(); //prompt user for non-mana activated abilities even is only possible ability
return false; //TODO: allow showing prompt based on whether ability has cost that requires user input and possible "misclick protection" setting
//return !this.isManaAbility(); //prompt user for non-mana activated abilities even is only possible ability
}
}