Skip to content

Commit

Permalink
remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
SchnTgaiSpock committed Oct 29, 2023
1 parent 84e5f52 commit 1fda0bf
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,9 @@ private double getDropChance(Material mat) {
return blockDropChanceCache.get(mat);
}

System.out.println("drops.block-break-chances." + StringUtil.kebabCase(mat.name()));
final double chance = Gastronomicon.getInstance()
.getConfig()
.getDouble("drops.block-break-chances." + StringUtil.kebabCase(mat.name()), 0.15);
System.out.println(chance);
blockDropChanceCache.put(mat, chance);
return chance;
}
Expand Down

0 comments on commit 1fda0bf

Please sign in to comment.