Editing Module:ItemListDebug

From Fallen London 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 save the changes below to finish undoing the edit.

Latest revision Your text
Line 414: Line 414:
 
     -- to b's corresponding sorting key's effect
 
     -- to b's corresponding sorting key's effect
 
     for i = 1, #a.sort_key do
 
     for i = 1, #a.sort_key do
     local aval = tonumber(string.match(tostring(a.sort_key[i].val), '[+-]?%d+'))
+
     local aval = tonumber(string.match(tostring(a.sort_key[i].val, '[+-]?%d+')))
 
         if (i > #b.sort_key) then
 
         if (i > #b.sort_key) then
 
             -- No more effects listed for item b.
 
             -- No more effects listed for item b.
Line 424: Line 424:
 
             end
 
             end
 
         end
 
         end
         local bval = tonumber(string.match(tostring(b.sort_key[i].val), '[+-]?%d+'))
+
         local bval = tonumber(string.match(tostring(b.sort_key[i].val, '[+-]?%d+')))
 
         if (aval > bval) then
 
         if (aval > bval) then
 
             return true
 
             return true
Line 435: Line 435:
 
     -- for item 'b', then we'll just check if the next one is positive or negative.
 
     -- for item 'b', then we'll just check if the next one is positive or negative.
 
     if (#b.sort_key > #a.sort_key) then
 
     if (#b.sort_key > #a.sort_key) then
         if (tonumber(string.match(tostring(b.sort_key[#a.sort_key + 1].val), '[+-]?%d+')) > 0) then
+
         if (tonumber(string.match(tostring(b.sort_key[#a.sort_key + 1].val, '[+-]?%d+'))) > 0) then
 
             return false
 
             return false
 
         else
 
         else

Please note that all contributions to Fallen London Wiki are considered to be released under the Creative Commons Attribution-ShareAlike (see Fallen London 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!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)
Preview page with this template

Template used on this page: