mirror of
https://github.com/correl/mage.git
synced 2024-11-24 11:09:54 +00:00
- Fix for issue #2885
This commit is contained in:
parent
df64713cbf
commit
c4737f11d0
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@ public class HumanPlayer extends PlayerImpl {
|
|||
@Override
|
||||
public int chooseReplacementEffect(Map<String, String> rEffects, Game game) {
|
||||
updateGameStatePriority("chooseEffect", game);
|
||||
if (rEffects.size() == 1) {
|
||||
if (rEffects.size() <= 1) {
|
||||
return 0;
|
||||
}
|
||||
if (!autoSelectReplacementEffects.isEmpty()) {
|
||||
|
|
Loading…
Reference in a new issue