version bump

This commit is contained in:
Pilzinsel64
2024-07-16 10:17:49 +02:00
parent 90a7bfe38d
commit 170d88b247

View File

@@ -27,7 +27,7 @@ public static class Extensions
return @this.Where(n => n.Enabled);
}
public static IEnumerable<T> Orderd<T>(this IEnumerable<T> @this) where T : PluginFeature
public static IEnumerable<T> Ordered<T>(this IEnumerable<T> @this) where T : PluginFeature
{
return @this.OrderByDescending(n => n.Prioritization);
}