1
0

Updated the core's settings.ini settings tab

git-svn-id: http://mc-server.googlecode.com/svn/trunk@1462 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
nielsbreu@gmail.com 2013-05-08 18:58:14 +00:00
parent da85eb9db2
commit df2249ecb5

View File

@ -17,10 +17,12 @@ end
local function HTML_Select_Version( name, defaultValue )
return [[<select name="]] .. name .. [[">]]
.. HTML_Option("0", "Latest Version", defaultValue == 0 )
.. HTML_Option("49", "1.4.5", defaultValue == 1 )
.. HTML_Option("47", "1.4.2", defaultValue == 2 )
.. HTML_Option("39", "1.3.2", defaultValue == 3 )
.. HTML_Option("29", "1.2.5", defaultValue == 4 )
.. HTML_Option("61", "1.5.2", defaultValue == 1 )
.. HTML_Option("60", "1.5.0", defaultValue == 2 )
.. HTML_Option("49", "1.4.5", defaultValue == 3 )
.. HTML_Option("47", "1.4.2", defaultValue == 4 )
.. HTML_Option("39", "1.3.2", defaultValue == 5 )
.. HTML_Option("29", "1.2.5", defaultValue == 6 )
.. [[</select>]]
end