Exclude bullet from custom objectives

This commit is contained in:
PikaMug 2022-03-01 22:22:11 -05:00
parent 4e996bb1f4
commit fd5b6c1eca
1 changed files with 1 additions and 1 deletions

View File

@ -1531,7 +1531,7 @@ public class Quester implements IQuester {
}
final int toClear = stage.getCustomObjectiveCounts().get(customIndex);
final ChatColor color = cleared < toClear ? ChatColor.GREEN : ChatColor.GRAY;
String message = color + "- " + co.getDisplay();
String message = color + co.getDisplay();
for (final Entry<String,Object> prompt : co.getData()) {
final String replacement = "%" + prompt.getKey() + "%";
try {