h1-mod/data/ui_scripts/extra_gamemodes/__init__.lua

16 lines
391 B
Lua
Raw Normal View History

2022-06-25 12:46:55 -04:00
if (game:issingleplayer() or not Engine.InFrontend()) then
return
end
2022-06-24 08:55:08 -04:00
Cac.GameModes.Data = {
Standard = {
Label = Engine.Localize("@MPUI_STANDARD_CAPS"),
Image = "h1_ui_icon_playlist_standard",
List =
{
"dm", "war", "sd", "dom", "conf", "sab", "koth", "hp", "gun",
"dd", "ctf" -- missing gamemodes from UI
}
}
}