Menu-FN: Respect gameinfo_chatroom if it was set from a manifest override.
This commit is contained in:
parent
7fe51a3fa5
commit
1bd9a5ea01
1 changed files with 6 additions and 1 deletions
|
@ -830,7 +830,12 @@ games_init(void)
|
|||
games[id].hlversion = "1000";
|
||||
games[id].svonly = 0;
|
||||
games[id].installed = 1;
|
||||
games[id].chatroom = gamedirname;
|
||||
games[id].chatroom = cvar_string("gameinfo_chatroom");
|
||||
|
||||
if not (games[id].chatroom) {
|
||||
games[id].chatroom = gamedirname;
|
||||
}
|
||||
|
||||
games[id].readme = "readme.txt";
|
||||
games[id].pkgid = -1;
|
||||
games[id].steambg = 0;
|
||||
|
|
Loading…
Reference in a new issue