From b199c71ef0536a9952c1daf8a01ab5aba53afa32 Mon Sep 17 00:00:00 2001 From: Jordan Cristiano Date: Sat, 27 May 2017 19:17:46 -0400 Subject: [PATCH] Fixed SVC_BspDecal reading an incorrect number of bits. --- demboyz/netmessages/netcontants.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/demboyz/netmessages/netcontants.h b/demboyz/netmessages/netcontants.h index 63a41dd..3dd4d2d 100644 --- a/demboyz/netmessages/netcontants.h +++ b/demboyz/netmessages/netcontants.h @@ -21,7 +21,10 @@ enum constants // Max # of edicts in a level MAX_EDICTS = (1 << MAX_EDICT_BITS), MAX_DECAL_INDEX_BITS = 9, - SP_MODEL_INDEX_BITS = 11, + + SP_MODEL_INDEX_BITS_OLD = 11, + SP_MODEL_INDEX_BITS = 13, + MAX_SERVER_CLASS_BITS = 9, MAX_EVENT_NAME_LENGTH = 32,