]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Do not use spaces within string logged by sv_eventlog
authorterencehill <piuntn@gmail.com>
Mon, 7 Mar 2011 23:11:48 +0000 (00:11 +0100)
committerterencehill <piuntn@gmail.com>
Mon, 7 Mar 2011 23:11:48 +0000 (00:11 +0100)
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

index 84402f0139441e3eda2e1e2945443006a013c67a..807931ee6b45456406d306f51b6f08b763dd8cd5 100644 (file)
@@ -740,7 +740,7 @@ void spawnfunc_worldspawn (void)
 
                // initialiation stuff, not good in the mutator system
                if(autocvar_g_weaponarena != "0")
 
                // 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)
 
                // TODO to mutator system
                if(autocvar_g_norecoil)