From 3cdd95c3c34c5640308abc2af32fe2027f0c02a9 Mon Sep 17 00:00:00 2001 From: terencehill Date: Tue, 8 Mar 2011 00:11:48 +0100 Subject: [PATCH] Do not use spaces within string logged by sv_eventlog Not sure it's a requirement, but I note that every other logged string got no space, so... if I'm wrong pls revert :) --- qcsrc/server/g_world.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/g_world.qc b/qcsrc/server/g_world.qc index 84402f013..807931ee6 100644 --- a/qcsrc/server/g_world.qc +++ b/qcsrc/server/g_world.qc @@ -740,7 +740,7 @@ void spawnfunc_worldspawn (void) // initialiation stuff, not good in the mutator system if(autocvar_g_weaponarena != "0") - s = strcat(s, ":", autocvar_g_weaponarena, " arena"); + s = strcat(s, ":", autocvar_g_weaponarena, "_arena"); // TODO to mutator system if(autocvar_g_norecoil) -- 2.39.2