UDestructibleComponent::IsAnySimulatingPhysics() typo

Hi, I found funny typo :wink:

bool UDestructibleComponent::IsAnySimulatingPhysics() const 
{
	return !!BodyInstance.bSimulatePhysics;
}

Best regards

Pierdek

Well, fix it and make a pull request :slight_smile:

This is not an error. !! is used here to convert from a uint32 to bool.