mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Fix pass with mana in pool message when activating macro
Suppress the pass with mana in pool question when activating a macro with mana in the pool. For example now you are able to make a macro producing mana with Devoted Druid and Vizier of Remedies.
This commit is contained in:
parent
1ac6a7a5a2
commit
cb988097d2
1 changed files with 1 additions and 1 deletions
|
@ -911,7 +911,7 @@ public class HumanPlayer extends PlayerImpl {
|
|||
}
|
||||
if (response.getBoolean() != null
|
||||
|| response.getInteger() != null) {
|
||||
if (passWithManaPoolCheck(game) && !activatingMacro) {
|
||||
if (!activatingMacro && passWithManaPoolCheck(game)) {
|
||||
return false;
|
||||
} else {
|
||||
if (activatingMacro) {
|
||||
|
|
Loading…
Reference in a new issue