summaryrefslogtreecommitdiff
path: root/builtin/modmgr.lua
diff options
context:
space:
mode:
Diffstat (limited to 'builtin/modmgr.lua')
-rw-r--r--builtin/modmgr.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/modmgr.lua b/builtin/modmgr.lua
index 1cb4b3922..045b52985 100644
--- a/builtin/modmgr.lua
+++ b/builtin/modmgr.lua
@@ -365,7 +365,7 @@ function modmgr.render_worldmodlist()
local parts = modmgr.global_mods[i]:split(DIR_DELIM)
local shortname = parts[#parts]
if modmgr.worldconfig.global_mods[shortname] then
- retval = retval .. "#GRN" .. modmgr.global_mods[i] .. ","
+ retval = retval .. "#22F922" .. modmgr.global_mods[i] .. ","
else
retval = retval .. modmgr.global_mods[i] .. ","
end
@@ -379,7 +379,7 @@ function modmgr.render_gamemodlist()
local retval = ""
for i=1,#modmgr.worldconfig.game_mods,1 do
retval = retval ..
- "#BLU" .. modmgr.worldconfig.game_mods[i] .. ","
+ "#0000FF" .. modmgr.worldconfig.game_mods[i] .. ","
end
return retval