CStrike: Fix a missing RemoveEntityHashValue function address check (#519)

This commit is contained in:
Vincent Herbet 2018-08-25 09:18:51 +02:00 committed by GitHub
parent 605d1a5b1e
commit ce14df0c77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -721,9 +721,9 @@ void InitFuncsAddresses()
MF_Log("UTIL_FindEntByString is not available - native cs_find_ent_by_class() has been disabled");
}
if (!AddEntityHashValue || !AddEntityHashValue)
if (!AddEntityHashValue || !RemoveEntityHashValue)
{
MF_Log("AddEntityHashValue or AddEntityHashValue is not available - native cs_set_ent_class() has been disabled");
MF_Log("AddEntityHashValue or RemoveEntityHashValue is not available - native cs_set_ent_class() has been disabled");
}
if (!HasReGameDll && !GetWeaponInfo)