Skip to content
Snippets Groups Projects
Commit c468686f authored by dg's avatar dg
Browse files

Inventory window encumberance title changes color the closer you get to overburned

git-svn-id: http://svn.net-core.org/repos/t-engine4@4410 51575b47-30f0-44d4-a5cc-537603b46e54
parent 096c389b
No related branches found
No related tags found
No related merge requests found
......@@ -725,7 +725,10 @@ function _M:getEncumberTitleUpdator(title)
return function()
local enc, max = self:getEncumbrance(), self:getMaxEncumbrance()
local color = "#00ff00#"
if enc > max then color = "#ff0000#" end
if enc > max then color = "#ff0000#"
elseif enc > max * 0.9 then color = "#ff8a00#"
elseif enc > max * 0.75 then color = "#fcff00#"
end
return ("%s - %sEncumberance %d/%d"):format(title, color, enc, max)
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment