Microwave UI + solids implemented.

This commit is contained in:
FL-OZ
2020-05-03 01:34:00 -05:00
parent dba0949c5b
commit 0f61c2fadf
8 changed files with 186 additions and 129 deletions

View File

@@ -33,12 +33,12 @@ namespace Content.Shared.Kitchen
return 0;
}
if (x._ingReagents.Count < y._ingReagents.Count)
if (x.IngredientsReagents.Count < y.IngredientsReagents.Count)
{
return 1;
}
if (x._ingReagents.Count > y._ingReagents.Count)
if (x.IngredientsReagents.Count > y.IngredientsReagents.Count)
{
return -1;
}