Engine: fix compile error

Netmsg is defined as SVC_SetClassVar, not as SVC_SetClassSettingsVar. Rename was missed before submitting b11d7e3c9b1555673d6cb490e60eca19153195e9.
This commit is contained in:
Kawe Mazidjatari 2024-09-28 12:28:28 +02:00
parent ba5801cce6
commit 432cb923cc

View File

@ -509,7 +509,7 @@ void CClientState::Reconnect()
//--------------------------------------------------------------------------------- //---------------------------------------------------------------------------------
void CClientState::RegisterNetMsgs(CNetChan* chan) void CClientState::RegisterNetMsgs(CNetChan* chan)
{ {
REGISTER_SVC_MSG(SetClassSettingsVar); REGISTER_SVC_MSG(SetClassVar);
} }
void VClientState::Detour(const bool bAttach) const void VClientState::Detour(const bool bAttach) const