diff options
author | Sfan5 <sfan5@live.de> | 2013-07-07 19:54:38 +0200 |
---|---|---|
committer | Sfan5 <sfan5@live.de> | 2013-07-07 19:59:18 +0200 |
commit | 7e73b7cae9faf203e369dc5cf2b85cff6e6efbad (patch) | |
tree | f14ac5571625588568a694bfe1e99df48e733e7e /builtin | |
parent | b3001bcd6e041f89db8514bf8603214fba6dd91e (diff) | |
download | minetest-7e73b7cae9faf203e369dc5cf2b85cff6e6efbad.tar.gz minetest-7e73b7cae9faf203e369dc5cf2b85cff6e6efbad.tar.bz2 minetest-7e73b7cae9faf203e369dc5cf2b85cff6e6efbad.zip |
Fix parseColor, change remaining colorkeys to new format, fix Contributor list
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/mainmenu.lua | 10 | ||||
-rw-r--r-- | builtin/modmgr.lua | 4 |
2 files changed, 7 insertions, 7 deletions
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) <celeron55@gmail.com>,".. "Ryan Kwolek (kwolekr) <kwolekr@minetest.net>,".. "PilzAdam <pilzadam@minetest.net>," .. @@ -1074,17 +1074,17 @@ function tabbuilder.tab_credits() "sfan5 <sfan5@live.de>,".. "kahrl <kahrl@gmx.net>,".. ",".. - "#YLWActive Contributors," .. + "#FFFF00Active Contributors," .. "sapier,".. "Vanessa Ezekowitz (VanessaE) <vanessaezekowitz@gmail.com>,".. "Jurgen Doser (doserj) <jurgen.doser@gmail.com>,".. "Jeija <jeija@mesecons.net>,".. "MirceaKitsune <mirceakitsune@gmail.com>,".. - "ShadowNinja".. - "dannydark <the_skeleton_of_a_child@yahoo.co.uk>".. + "ShadowNinja,".. + "dannydark <the_skeleton_of_a_child@yahoo.co.uk>,".. "0gb.us <0gb.us@0gb.us>,".. "," .. - "#YLWPrevious Contributors," .. + "#FFFF00Previous Contributors," .. "Guiseppe Bilotta (Oblomov) <guiseppe.bilotta@gmail.com>,".. "Jonathan Neuschafer <j.neuschaefer@gmx.net>,".. "Nils Dagsson Moskopp (erlehmann) <nils@dieweltistgarnichtso.net>,".. 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 |