From 74d01e22dda75d1a9d54b5095fdd9373e3ac3593 Mon Sep 17 00:00:00 2001 From: havoc Date: Tue, 22 May 2007 02:37:06 +0000 Subject: [PATCH] fix typo git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7333 d7cf8633-e32d-0410-b094-e92efae38249 --- svvm_cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svvm_cmds.c b/svvm_cmds.c index 7390fda5..0fb024e8 100644 --- a/svvm_cmds.c +++ b/svvm_cmds.c @@ -2656,7 +2656,7 @@ static void VM_SV_pointparticles (void) VectorCopy(PRVM_G_VECTOR(OFS_PARM1), org); VectorCopy(PRVM_G_VECTOR(OFS_PARM2), vel); count = bound(0, (int)PRVM_G_FLOAT(OFS_PARM3), 65535); - if (count == 1 && !VectorLength2(vel) && (sv.protocol != PROTOCOL_QUAKE && sv.protocol != PROTOCOL_QUAKEDP && sv.protocol != PROTOCOL_NEHAHRAMOVIE && sv.protocol != PROTOCOL_DARKPLACES1 && sv.protocol != DARKPLACES2 && sv.protocol != DARKPLACES3 && sv.protocol != DARKPLACES4 && sv.protocol != DARKPLACES5 && sv.protocol != DARKPLACES6 && sv.protocol != DARKPLACES7)) + if (count == 1 && !VectorLength2(vel) && (sv.protocol != PROTOCOL_QUAKE && sv.protocol != PROTOCOL_QUAKEDP && sv.protocol != PROTOCOL_NEHAHRAMOVIE && sv.protocol != PROTOCOL_DARKPLACES1 && sv.protocol != PROTOCOL_DARKPLACES2 && sv.protocol != PROTOCOL_DARKPLACES3 && sv.protocol != PROTOCOL_DARKPLACES4 && sv.protocol != PROTOCOL_DARKPLACES5 && sv.protocol != PROTOCOL_DARKPLACES6 && sv.protocol != PROTOCOL_DARKPLACES7)) { // 1+2+12=15 bytes MSG_WriteByte(&sv.datagram, svc_pointparticles1); -- 2.39.2