From: terencehill Date: Mon, 7 Mar 2011 23:11:48 +0000 (+0100) Subject: Do not use spaces within string logged by sv_eventlog X-Git-Tag: xonotic-v0.5.0~309^2~11^2~3 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=3cdd95c3c34c5640308abc2af32fe2027f0c02a9 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 :) --- diff --git a/qcsrc/server/g_world.qc b/qcsrc/server/g_world.qc index 84402f0139..807931ee6b 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)