Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

Commit

Permalink
Missed a String.format
Browse files Browse the repository at this point in the history
  • Loading branch information
brittyazel committed Nov 10, 2018
1 parent 5199722 commit 3808305
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bar-Modules/Neuron-Status.lua
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ function NeuronStatusBar:xpstrings_Update(button) --handles updating all the str
percentXP = (currXP/nextXP)*100;

bubbles = tostring(math.floor(currXP/(nextXP/20))).." / 20 "..L["Bubbles"]
percentXP = string.format("%.1f", (percentXP)).."%"
percentXP = string.format("%.2f", (percentXP)).."%"


if (restedXP) then
Expand Down

0 comments on commit 3808305

Please sign in to comment.