Skip to content

Commit

Permalink
aint no way a "!" fucked the entire func generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Spuckwaffel committed Sep 19, 2023
1 parent 82f855d commit cbcd3e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UEDumper/Engine/Core/Core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ bool EngineCore::generateFunctions(const UStruct* object, std::vector<EngineStru
//in every version we have to go through the children to
for (auto fieldChild = object->getChildren(); fieldChild; fieldChild = fieldChild->getNext())
{
if (fieldChild || !fieldChild->IsA<UFunction>())
if (!fieldChild || !fieldChild->IsA<UFunction>())
continue;


Expand Down

0 comments on commit cbcd3e7

Please sign in to comment.