Reorders the game setup drop list for maps.

This was SVN commit r14048.
This commit is contained in:
Michael D. Hafer 2013-10-26 15:20:13 +00:00
parent 30af350e31
commit 31e79e6709

View File

@ -107,8 +107,8 @@ function initMain()
// Init map types
var mapTypes = getGUIObjectByName("mapTypeSelection");
mapTypes.list = ["Scenario","Skirmish","Random"];
mapTypes.list_data = ["scenario","skirmish","random"];
mapTypes.list = ["Skirmish","Random","Scenario"];
mapTypes.list_data = ["skirmish","random","scenario"];
// Setup map filters - will appear in order they are added
addFilter("Default", function(settings) { return settings && !keywordTestOR(settings.Keywords, ["naval", "demo", "hidden"]); });