From 75684fdade746032892369533b32fea60a727f5e Mon Sep 17 00:00:00 2001 From: Spoike Date: Mon, 18 Oct 2004 10:49:19 +0000 Subject: [PATCH] It's a bit annoying getting those messages. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@350 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/server/sv_init.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/engine/server/sv_init.c b/engine/server/sv_init.c index 3faadb75f..8d2ca05e5 100644 --- a/engine/server/sv_init.c +++ b/engine/server/sv_init.c @@ -331,7 +331,8 @@ void SV_CalcPHS (void) return; } - Con_TPrintf (STL_BUILDINGPHS); + if (developer.value) + Con_TPrintf (STL_BUILDINGPHS); num = sv.worldmodel->numleafs; rowwords = (num+31)>>5; @@ -391,7 +392,8 @@ void SV_CalcPHS (void) } if (num) - Con_TPrintf (STL_PHSINFO, vcount/num, count/num, num); + if (developer.value) + Con_TPrintf (STL_PHSINFO, vcount/num, count/num, num); } unsigned SV_CheckModel(char *mdl)