Merge pull request #5936 from jasc7636/master

Fix pass with mana in pool message when activating macro
This commit is contained in:
Oleg Agafonov 2019-08-14 19:05:01 +02:00 committed by GitHub
commit 04552e2330
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 if (response.getBoolean() != null
|| response.getInteger() != null) { || response.getInteger() != null) {
if (passWithManaPoolCheck(game) && !activatingMacro) { if (!activatingMacro && passWithManaPoolCheck(game)) {
return false; return false;
} else { } else {
if (activatingMacro) { if (activatingMacro) {