From e45468bdc78dfa45ce38a4ba3bda30d6f9308021 Mon Sep 17 00:00:00 2001 From: Totterynine Date: Mon, 13 Sep 2021 19:44:40 +0500 Subject: [PATCH] Fix max static prop limit --- public/const.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/const.h b/public/const.h index 0ed97e9..42fccf2 100644 --- a/public/const.h +++ b/public/const.h @@ -74,7 +74,7 @@ #define SIGNED_GUID_LEN 32 // Hashed CD Key (32 hex alphabetic chars + 0 terminator ) // Used for networking ehandles. -#define NUM_ENT_ENTRY_BITS (MAX_EDICT_BITS + 1) +#define NUM_ENT_ENTRY_BITS (MAX_EDICT_BITS + 3) #define NUM_ENT_ENTRIES (1 << NUM_ENT_ENTRY_BITS) #define ENT_ENTRY_MASK (NUM_ENT_ENTRIES - 1) #define INVALID_EHANDLE_INDEX 0xFFFFFFFF