mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Merge pull request #5936 from jasc7636/master
Fix pass with mana in pool message when activating macro
This commit is contained in:
commit
04552e2330
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue