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/mainmenu.lua | 10 +++++----- builtin/modmgr.lua | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'builtin') diff --git a/builtin/mainmenu.lua b/builtin/mainmenu.lua index 12747c8c9..c3808e7b9 100644 --- a/builtin/mainmenu.lua +++ b/builtin/mainmenu.lua @@ -1063,7 +1063,7 @@ function tabbuilder.tab_credits() "label[0.5,3.3;http://minetest.net]" .. "image[0.5,1;" .. menu.basetexturedir .. "logo.png]" .. "textlist[3.5,-0.25;8.5,5.8;list_credits;" .. - "#YLWCore Developers," .. + "#FFFF00Core Developers," .. "Perttu Ahola (celeron55) ,".. "Ryan Kwolek (kwolekr) ,".. "PilzAdam ," .. @@ -1074,17 +1074,17 @@ function tabbuilder.tab_credits() "sfan5 ,".. "kahrl ,".. ",".. - "#YLWActive Contributors," .. + "#FFFF00Active Contributors," .. "sapier,".. "Vanessa Ezekowitz (VanessaE) ,".. "Jurgen Doser (doserj) ,".. "Jeija ,".. "MirceaKitsune ,".. - "ShadowNinja".. - "dannydark ".. + "ShadowNinja,".. + "dannydark ,".. "0gb.us <0gb.us@0gb.us>,".. "," .. - "#YLWPrevious Contributors," .. + "#FFFF00Previous Contributors," .. "Guiseppe Bilotta (Oblomov) ,".. "Jonathan Neuschafer ,".. "Nils Dagsson Moskopp (erlehmann) ,".. 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