diff options
author | Barichello <artur@barichello.me> | 2022-01-25 10:42:19 -0300 |
---|---|---|
committer | Barichello <artur@barichello.me> | 2022-01-25 10:42:19 -0300 |
commit | bb6f8e68fb286dcb9a042d667d73eafd1340342a (patch) | |
tree | db9aeaa2df0075ed8397850b005dc1d9258a3191 | |
parent | aaecc659ea4de66a0a64383a93488618aad70021 (diff) | |
download | NorthstarMods-bb6f8e68fb286dcb9a042d667d73eafd1340342a.tar.gz NorthstarMods-bb6f8e68fb286dcb9a042d667d73eafd1340342a.zip |
Reorder gamemode list
Moving skirmish to first position until attrition gets sorted out
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/lobby/sh_lobby.gnut | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/lobby/sh_lobby.gnut b/Northstar.CustomServers/mod/scripts/vscripts/lobby/sh_lobby.gnut index 605b23fd..d0a69741 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/lobby/sh_lobby.gnut +++ b/Northstar.CustomServers/mod/scripts/vscripts/lobby/sh_lobby.gnut @@ -12,13 +12,12 @@ global struct CustomMatchSettingContainer // enum setting array< string > enumNames array< string > enumValues - //table< string, string > enumValuePairs } struct { array<string> modes = [ // default modes in vanilla - "aitdm", "tdm", + "aitdm", "cp", "at", "ctf", @@ -167,7 +166,6 @@ void function AddPrivateMatchModeSettingEnumEx( string category, string playlist setting.defaultValue = defaultValue setting.localizedName = localizedName setting.isEnumSetting = true - //setting.enumValuePairs = enumPairs foreach ( string name, string value in enumPairs ) { |