Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pixeye committed May 30, 2019
1 parent 857785d commit 4e3d3f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/LibEcs/Composition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ internal void SetupExcludeTypes(GroupCore g)
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal bool CheckTags(int entityID)
{
return CanProceed(entityID) && (includeTags.Length == 0 || IncludeTags(entityID)) & (excludeTags.Length == 0 || ExcludeTags(entityID));
return CanProceed(entityID) && (includeTags.Length == 0 || IncludeTags(entityID)) & (excludeTags.Length == 0 || ExcludeTags(entityID)) & !ExcludeTypes(entityID);
}

[MethodImpl(MethodImplOptions.AggressiveInlining)]
Expand Down

0 comments on commit 4e3d3f9

Please sign in to comment.