Skip to content

Commit

Permalink
Do not send track advancement for PAPI task type as it behaves really…
Browse files Browse the repository at this point in the history
… weird
  • Loading branch information
Krakenied authored and LMBishop committed Feb 18, 2024
1 parent 399dd21 commit 704ece3
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -158,7 +158,8 @@ private void handle(Player player) {
taskProgress.setCompleted(true);
}

TaskUtils.sendTrackAdvancement(player, quest, task, taskProgress, evaluates);
// Do not send track advancement for this task type as it behaves really weird
//TaskUtils.sendTrackAdvancement(player, quest, task, taskProgress, evaluates);
} else if (evaluatedString.equals(evaluatesString)) {
super.debug("Marking task as complete", quest.getId(), task.getId(), player.getUniqueId());
taskProgress.setCompleted(true);
Expand Down

0 comments on commit 704ece3

Please sign in to comment.