[Bug Report] Error: Entity Query Desc Validation Exception

Hello!

After updating to the 5.4.6 version we are seeing the following exception when starting a scene:

Error: EntityQueryDescValidationException: EntityQuery contains a filter with duplicate component type name AgentShouldRecalculatePath. Queries can only contain a single component of a given type in a filter.

From what we can see this is because WithPresent(typeof(AgentShouldRecalculatePath))] is superfluous above JobShouldRecalculatePaths since EnabledRefRW<AgentShouldRecalculatePath> shouldRecalculatePath is already a parameter of the execute function.

We are using Entities 1.3.2 which is still a bit old so this was surprising.

Removing the WithPresent decorator fixes the issue.