diff --git a/engine/client/r_part.c b/engine/client/r_part.c index 14629bdca..652faa8b0 100644 --- a/engine/client/r_part.c +++ b/engine/client/r_part.c @@ -1344,6 +1344,13 @@ void P_NewServer(void) f_modified_particles = false; + { + char *semi; + semi = strchr(r_particlesdesc.string, ';'); + if (semi) //make sure nothing uses this for other means. + *semi = '\0'; + } + //particle descriptions submitted by the server are deemed to not be cheats but game configs. if (!stricmp(r_particlesdesc.string, "none")) return;