Skip to content

Commit

Permalink
fix bingo entity challenges
Browse files Browse the repository at this point in the history
  • Loading branch information
Blast-MC committed Feb 9, 2024
1 parent 38ad459 commit 981b21f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ default Set<String> getRemainingTasks(Challenge challenge) {

int remaining = (int) (killChallenge.getAmount() - getProgress().stream().filter(required::contains).count());

if (remaining == 0)
if (remaining <= 0)
return Collections.emptySet();

final String entityTypes = required.stream()
Expand Down

0 comments on commit 981b21f

Please sign in to comment.