Fix bug where lathe databases didn't get serialized correctly. (#252)

This commit is contained in:
Víctor Aguilera Puerto
2019-06-02 01:18:54 +02:00
committed by Pieter-Jan Briers
parent dd13d969b2
commit 50bc1bff48
2 changed files with 24 additions and 17 deletions

View File

@@ -44,17 +44,5 @@ namespace Content.Server.GameObjects.Components.Research
Dirty();
return true;
}
private List<string> GetRecipeIdList()
{
var list = new List<string>();
foreach (var recipe in this)
{
list.Add(recipe.ID);
}
return list;
}
}
}