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:
Jakob 2019-08-13 20:51:02 +02:00 committed by GitHub
parent 1ac6a7a5a2
commit cb988097d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) {