forked from External/mage
This allows people to float mana more easily and to not have to get the popup forcing them to select which mana ability they would like to activate. There's a new option in the menu system under the Mana Payment section which is set via pressing 'Alt' and the number '1' key (aka Alt+1) (and is unset by releasing Alt+1). Or they can set it from the right click menu as well.
12 lines
238 B
Java
12 lines
238 B
Java
package mage.constants;
|
|
|
|
/**
|
|
* Allows user to either tap a land for the first mode directly (shortcut)
|
|
* or have the normal method which pops up a menu
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public enum UseFirstManaAbilityMode {
|
|
|
|
NORMAL, FIRST
|
|
}
|