summaryrefslogtreecommitdiff
path: root/builtin/modmgr.lua
diff options
context:
space:
mode:
authorSfan5 <sfan5@live.de>2013-07-07 19:54:38 +0200
committerSfan5 <sfan5@live.de>2013-07-07 19:59:18 +0200
commit7e73b7cae9faf203e369dc5cf2b85cff6e6efbad (patch)
treef14ac5571625588568a694bfe1e99df48e733e7e /builtin/modmgr.lua
parentb3001bcd6e041f89db8514bf8603214fba6dd91e (diff)
downloadminetest-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/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