LogObjectHash - Enum Ambiguous Search 4.20 -> 4.22

Switching to 4.22 for added features, I’ve encountered an error message that I’ve had trouble finding further documentation / search results on.

The Property is defined this way:

	UPROPERTY(BlueprintInternalUseOnly, BlueprintReadWrite, Category = "Admin")
	EControllerType ControllerType;

The Enumerator is a custom UENUM Class saved in a separate file (header is included). Upon compile, I get the error:

LogUObjectHash: Error: Ambiguous search, could be Enum /Script/VREditor.EControllerType or Enum /Script/DBS.EControllerType

Declaring it as a TEnumAsByte doesn’t do anything either.

How should I be declaring the Property? The Enumerator is declared as a BlueprintType.

Simple but weird; there is an enum class EControllerType already (that has a different use) in 4.22. Changed the Name of my Enumerator Class.