From 7e73b7cae9faf203e369dc5cf2b85cff6e6efbad Mon Sep 17 00:00:00 2001 From: Sfan5 Date: Sun, 7 Jul 2013 19:54:38 +0200 Subject: Fix parseColor, change remaining colorkeys to new format, fix Contributor list --- builtin/modmgr.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'builtin/modmgr.lua') 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 -- cgit v1.2.3