FString UKismetStringLibrary::Conv_BoolToString(bool InBool)
{
return InBool ? TEXT("true") : TEXT("false");
}
So really does not matter. That function btw is a node for blueprint and it’s not used outside of it (at least GitHub don’t find any use of that function)