From 74c0d0fe2182b0c488b769de2fc9a5fa88843a2e Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 27 Apr 2005 07:00:02 +0000 Subject: [PATCH] fix a nasty bug in QSG support where the wrong flag was getting set for frame number > 255 --- qw/source/sv_ents.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qw/source/sv_ents.c b/qw/source/sv_ents.c index cfeb5d62f..34e210920 100644 --- a/qw/source/sv_ents.c +++ b/qw/source/sv_ents.c @@ -500,7 +500,7 @@ SV_WritePlayersToClient (client_t *client, edict_t *clent, byte *pvs, && !VectorIsZero (SVvector (ent, colormod))) qf_bits |= PF_COLORMOD; if ((int) SVfloat (ent, frame) > 255) - qf_bits |= PF_EFFECTS2; + qf_bits |= PF_FRAME2; if (qf_bits) pflags |= PF_QF; }