From 56e10b870f94d88507c64c0dd55bbfd0445f738e Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Sun, 3 May 2015 09:34:55 -0400 Subject: [PATCH] Update CBaseEdict for "6.84" changes. Eight bytes were added in the middle of the class. No clue what they are yet. --- public/edict.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/edict.h b/public/edict.h index 606b1734..b183d061 100644 --- a/public/edict.h +++ b/public/edict.h @@ -211,6 +211,10 @@ public: // NOTE: this is in the edict instead of being accessed by a virtual because the engine needs fast access to it. IServerNetworkable *m_pNetworkable; + + // New as of "6.84" update. + int unknown1; + int unknown2; protected: IServerUnknown *m_pUnk;