Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public interface ILeveling {

/**
* This method returns the level of a player calculated by the current experience gathered. The result is
* a precise level of the player The value is not zero-indexed and represents the absolute visible level
* a precise level of the player. The value is not zero-indexed and represents the absolute visible level
* for the player.
* The result can't be smaller than 1 and negative experience results in level 1.
* <p>
Expand All @@ -38,7 +38,7 @@ static double getLevel(double exp) {

/**
* This method returns the level of a player calculated by the current experience gathered. The result is
* a precise level of the player The value is not zero-indexed and represents the visible level
* a precise level of the player. The value is not zero-indexed and represents the visible level
* for the player.
* The result can't be smaller than 1 and negative experience results in level 1.
* <p>
Expand Down