Skip to content

Commit

Permalink
syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
saint11 committed May 10, 2024
1 parent 791f173 commit 2c9c4b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Murder.Editor/Utilities/AssetsFilter.cs
Expand Up @@ -149,7 +149,7 @@ internal static class AssetsFilter
return ReflectionHelper.GetAllImplementationsOf<IComponent>()
.Where(t => !Attribute.IsDefined(t, typeof(HideInEditorAttribute))
&& !typeof(IMessage).IsAssignableFrom(t)
&& !Attribute.IsDefined(t, typeof(RuntimeOnlyAttribute)
&& !Attribute.IsDefined(t, typeof(RuntimeOnlyAttribute))
&& !Attribute.IsDefined(t, typeof(HideInEditorAttribute)))
.ToImmutableArray();
});
Expand Down

0 comments on commit 2c9c4b6

Please sign in to comment.