mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
fixed a test failure
This commit is contained in:
parent
85dfa58e5d
commit
002a7af6d0
1 changed files with 2 additions and 1 deletions
|
@ -74,7 +74,8 @@ public class PhaseOutTargetEffect extends OneShotEffect {
|
|||
sb.append("Target ").append(mode.getTargets().get(0).getTargetName());
|
||||
}
|
||||
sb.append(" phase");
|
||||
if (mode.getTargets().get(0).getMaxNumberOfTargets() <= 1) {
|
||||
if (mode.getTargets().isEmpty()
|
||||
|| mode.getTargets().get(0).getMaxNumberOfTargets() <= 1) {
|
||||
sb.append('s');
|
||||
}
|
||||
sb.append(" out");
|
||||
|
|
Loading…
Reference in a new issue