From: divverent Date: Fri, 23 Jan 2009 10:45:03 +0000 (+0000) Subject: do the skipping here too X-Git-Tag: xonotic-v0.1.0preview~1927 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9ac7eadb96f2ec307d870c40335b32818d4e4731;p=xonotic%2Fdarkplaces.git do the skipping here too git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8665 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/prvm_cmds.c b/prvm_cmds.c index 51559a91..2887b0fe 100644 --- a/prvm_cmds.c +++ b/prvm_cmds.c @@ -4435,6 +4435,10 @@ void VM_buf_cvarlist(void) { if(partial && strncasecmp(partial, cvar->name, len)) continue; + + if(antilen && !strncasecmp(antipartial, cvar->name, antilen)) + continue; + ++n; }