h1-mod/data/ui_scripts/extra_gamemodes/__init__.lua
2022-06-25 18:46:55 +02:00

16 lines
391 B
Lua

if (game:issingleplayer() or not Engine.InFrontend()) then
return
end
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
}
}
}