Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
qwertyuioplkjhgfd committed Oct 19, 2023
1 parent 0268fea commit af5724f
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ private List<String> getCriteriaLore(Advancement adv) {
List<String> res = new ArrayList<>();
for (Criterion criterion : adv.getCriteria()) {
String criterionName = criterion.getName();
System.out.println(adv.getName() + " " + criterionName);
int progress = SFAdvancements.getAdvManager().getCriterionProgress(playerUUID, criterion);
int max = criterion.getCount();
boolean cridone = progress >= max;
Expand Down

0 comments on commit af5724f

Please sign in to comment.