Правки

This commit is contained in:
Glliza 2024-06-17 12:41:30 +04:00
parent 1c7cbfc84c
commit d426a096f9

View File

@ -12,11 +12,11 @@ public class DrawningBusCompareByType : IComparer<DrawningBus?>
{
if (x == null || x.EntityBus == null)
{
return -1;
return 1;
}
if (y == null || y.EntityBus == null)
{
return 1;
return -1;
}
if (x.GetType().Name != y.GetType().Name)
{