mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
reviving
This commit is contained in:
@@ -208,15 +208,15 @@ void UObject::AddToRoot()
|
||||
|
||||
bool UObject::IsValidLowLevel()
|
||||
{
|
||||
if (std::floor(Fortnite_Version) == 5) // real 1:1
|
||||
return true;
|
||||
if (std::floor(Fortnite_Version) == 5) // real 1:1 // todo (milxnor) try without this
|
||||
return !IsBadReadPtr(this, 8);
|
||||
|
||||
if (this == nullptr)
|
||||
{
|
||||
// UE_LOG(LogUObjectBase, Warning, TEXT("NULL object"));
|
||||
return false;
|
||||
}
|
||||
if (IsBadReadPtr(this, 8)) // needed?
|
||||
if (IsBadReadPtr(this, 8)) // needed? (milxnor)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user