Skip to content

Commit

Permalink
Remove debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
Archy-X committed Jul 20, 2024
1 parent 7535192 commit 434cd8b
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ public void xpConvert(XpGainEvent event) {
if (value > 0) {
int added = (int) (totalXp / value);
double remainder = totalXp - added * value;
plugin.logger().info("Value: " + value + ", added: " + added + ", remainder: " + remainder);
player.giveExp(Math.max(added, 0));
user.getAbilityData(ability).setData("xp", remainder);
}
Expand Down

0 comments on commit 434cd8b

Please sign in to comment.