Merge pull request #933 from nvisser/xptracker-roundactions
Round actions remaining up
This commit is contained in:
@@ -73,7 +73,7 @@ class SkillXPInfo
|
||||
|
||||
int getActionsRemaining()
|
||||
{
|
||||
return getXpRemaining() / actionExp;
|
||||
return (int) Math.ceil(getXpRemaining() / (float) actionExp);
|
||||
}
|
||||
|
||||
int getSkillProgress()
|
||||
|
||||
Reference in New Issue
Block a user