ValveSoftware / halflife

Half-Life 1 engine based games
Other
3.69k stars 623 forks source link

[DMC/RC] Missing resume game, disconnect and player list from menu #897

Closed Litude closed 11 years ago

Litude commented 11 years ago

Deathmatch Classic and Ricochet are missing the options "Resume game", "Disconnect" and "Player list" from the game main menu when you are in a game. Simply copying over GameMenu.res from Team Fortress Classic will fix this. Contents of TFC GameMenu.res:

"GameMenu"
{
    "1"
    {
        "label" "#GameUI_GameMenu_ResumeGame"
        "command" "ResumeGame"
        "OnlyInGame" "1"
    }
    "2"
    {
        "label" "#GameUI_GameMenu_Disconnect"
        "command" "Disconnect"
        "OnlyInGame" "1"
        "notsingle" "1"
    }
    "3"
    {
        "label" "#GameUI_GameMenu_PlayerList"
        "command" "OpenPlayerListDialog"
        "OnlyInGame" "1"
        "notsingle" "1"
    }
    "4"
    {
        "label" ""
        "command" ""
        "OnlyInGame" "1"
    }
    "5"
    {
        "label" "#GameUI_GameMenu_FindServers"
        "command" "OpenServerBrowser"
    }
    "6"
    {
        "label" "#GameUI_GameMenu_CreateServer"
        "command" "OpenCreateMultiplayerGameDialog"
    }
    "7"
    {
        "label" "#GameUI_GameMenu_Options"
        "command" "OpenOptionsDialog"
    }
    "8"
    {
        "label" "#GameUI_GameMenu_Quit"
        "command" "Quit"
    }
}
alfred-valve commented 11 years ago

Thanks!