diff --git a/public/tier1/convar.h b/public/tier1/convar.h index 7cf21f53..9df80101 100644 --- a/public/tier1/convar.h +++ b/public/tier1/convar.h @@ -130,6 +130,11 @@ public: // Deal with next pointer const ConCommandBase *GetNext( void ) const; ConCommandBase *GetNext( void ); + + inline void SetNext(ConCommandBase *pBase) + { + m_pNext = pBase; + } virtual bool IsRegistered( void ) const;