Add (not working) basis for allowing solids (entities) in recipes.

This commit is contained in:
FL-OZ
2020-05-02 01:29:20 -05:00
parent dd19466578
commit dba0949c5b
9 changed files with 132 additions and 56 deletions

View File

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