Editing Module:Rates

From Ephinea PSO Wiki
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 59: Line 59:
-- @return {string}
-- @return {string}
--
--
local function fmtRate(rate, fmt, digits)
local function fmtRate(rate, fmt)
   local out = ""
   local out = ""
   local frac = {}
   local frac = {}
Line 77: Line 77:
   if fmt == "f" then
   if fmt == "f" then
     if wholeFractions[rate] == nil then
     if wholeFractions[rate] == nil then
       if not digits then
       local digits = 0
        digits = 0
      end
       -- Set maximum number of decimal places
       -- Set maximum number of decimal places
       if 1/rate < 10 then
       if 1/rate < 10 then
         -- Displays with two places between 1.01 ~ 9.99
         -- Displays with two places between 1.01 ~ 9.99
         digits = math.max(digits, 2)
         digits = 2
       elseif 1/rate < 100 then
       elseif 1/rate < 100 then
         -- Displays with one place between 10.1 ~ 99.9
         -- Displays with one place between 10.1 ~ 99.9
         digits = math.max(digits, 1)
         digits = 1
       end
       end
       -- Even if we're displaying one or more decimal places, cut zeroes off
       -- Even if we're displaying one or more decimal places, cut zeroes off
Please note that all contributions to Ephinea PSO Wiki are considered to be released under the CC BY-NC-SA 4.0 (see Ephinea PSO Wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)