From 5a86ab285513cf780f11d94723e6e1611c343179 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 17 Mar 2017 10:14:44 +1000 Subject: [PATCH] Send .frags as a short, not a byte --- qcsrc/common/ent_cs.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/common/ent_cs.qc b/qcsrc/common/ent_cs.qc index 7777e84fa..12abc21b1 100644 --- a/qcsrc/common/ent_cs.qc +++ b/qcsrc/common/ent_cs.qc @@ -78,8 +78,8 @@ ENTCS_PROP(CLIENTCOLORS, true, clientcolors, ENTCS_SET_NORMAL, { ent.colormap = ReadByte(); }) ENTCS_PROP(FRAGS, true, frags, ENTCS_SET_NORMAL, - { WriteByte(chan, ent.frags); }, - { ent.frags = ReadByte(); }) + { WriteShort(chan, ent.frags); }, + { ent.frags = ReadShort(); }) #ifdef SVQC -- 2.39.2