Skip to content

Commit

Permalink
Most people don't need unsupported task types count
Browse files Browse the repository at this point in the history
Added Quests.ShowNotSupportedCount property
  • Loading branch information
Krakenied committed Jul 27, 2024
1 parent fd1b698 commit b2a7391
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -573,12 +573,14 @@ private int getServerVersion() throws IllegalArgumentException {
sb.append(skipped).append(" skipped due to exclusions or conflicting names");
}

if (skipped * unsupported > 0) {
sb.append(',').append(' ');
}
if (Boolean.getBoolean("Quests.ShowNotSupportedCount")) {
if (skipped * unsupported > 0) {
sb.append(',').append(' ');
}

if (unsupported > 0) {
sb.append(unsupported).append(" not supported");
if (unsupported > 0) {
sb.append(unsupported).append(" not supported");
}
}

sb.append(')');
Expand Down

0 comments on commit b2a7391

Please sign in to comment.