From ccc746fbf40dd81d12a16a37410940311dd02d3e Mon Sep 17 00:00:00 2001 From: James R Date: Thu, 9 Apr 2020 17:21:30 -0700 Subject: [PATCH] Change netvars in replays --- src/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.c b/src/command.c index 625065120..6f3ccd7f6 100644 --- a/src/command.c +++ b/src/command.c @@ -1543,7 +1543,7 @@ static void CV_SetCVar(consvar_t *var, const char *value, boolean stealth) } // Only add to netcmd buffer if in a netgame, otherwise, just change it. - if (netgame || multiplayer) + if (netgame) { WRITEUINT16(p, var->netid); WRITESTRING(p, value);