Enclose in dvar onInit signal
This commit is contained in:
parent
0e3d4a596b
commit
3af0871902
@ -367,8 +367,12 @@ namespace Components
|
|||||||
// Hook Dvar_SetFromStringByName inside CG_SetClientDvarFromServer so we can reset dvars when the player leaves the server
|
// Hook Dvar_SetFromStringByName inside CG_SetClientDvarFromServer so we can reset dvars when the player leaves the server
|
||||||
Utils::Hook(0x59386A, Dvar::DvarSetFromStringByNameStub, HOOK_CALL).install()->quick();
|
Utils::Hook(0x59386A, Dvar::DvarSetFromStringByNameStub, HOOK_CALL).install()->quick();
|
||||||
|
|
||||||
// If the game closed abruptly the dvars would have not been restored
|
// If the game closed abruptly, the dvars would not have been restored
|
||||||
|
|
||||||
|
Dvar::OnInit([]
|
||||||
|
{
|
||||||
Dvar::ResetDvarsValue();
|
Dvar::ResetDvarsValue();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
Dvar::~Dvar()
|
Dvar::~Dvar()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user