Valve: Check for cvar 'coop' as well as 'sv_playerslots' for Singleplayer
This commit is contained in:
parent
7ea6f8246c
commit
520e91616a
1 changed files with 1 additions and 1 deletions
|
@ -317,7 +317,7 @@ Game_PutClientInServer(void)
|
|||
forceinfokey(pl, "*spec", "0");
|
||||
forceinfokey(self, "*deaths", ftos(self.deaths));
|
||||
|
||||
if (cvar("sv_playerslots") == 1) {
|
||||
if (cvar("sv_playerslots") == 1 || cvar("coop") == 1) {
|
||||
Game_DecodeChangeParms();
|
||||
|
||||
if (startspot != "") {
|
||||
|
|
Loading…
Reference in a new issue