Skip to content

Commit

Permalink
Another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DrSmugleaf committed Nov 23, 2023
1 parent 70b00d0 commit 24f18d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Arch/Core/Extensions/WorldExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public static bool HasRange(this World world, Entity entity, params ComponentTyp
/// <param name="types">The component <see cref="ComponentType"/>.</param>
/// <returns>A reference to the component.</returns>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static object[] GetRange(this World world, Entity entity, params ComponentType[] types)
public static object?[] GetRange(this World world, Entity entity, params ComponentType[] types)
{
return world.GetRange(entity, types);
}
Expand Down

0 comments on commit 24f18d0

Please sign in to comment.