crashing issues fixed

Fixed random crashes occurring while ESP is active. Tested extensively on several maps without crash reports. I believe the issue is resolved
This commit is contained in:
Jadis0x
2024-06-28 19:12:21 +03:00
parent a462aa0afc
commit c99f820fa6
5 changed files with 51 additions and 26 deletions

View File

@@ -20,6 +20,10 @@ namespace Transform {
{
if (!component) return nullptr;
return app::Component_get_transform((app::Component*)component, nullptr);
if (app::Component_get_transform != nullptr) {
return app::Component_get_transform((app::Component*)component, nullptr);
}
return nullptr;
}
}