Editing Module:ItemListDebug
From Fallen London Wiki (Staging)
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 | + | 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 | + | 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 | + | if (tonumber(string.match(tostring(b.sort_key[#a.sort_key + 1].val, '[+-]?%d+'))) > 0) then |
return false | return false | ||
else | else |