(a2b4f82e7) Fixed Job.Save not saving the identifier of the job, preventing jobs from being loaded correctly if the language is changed after saving.

This commit is contained in:
Joonas Rikkonen
2019-04-29 21:13:03 +03:00
parent 8737a0e0dd
commit 8d3d103e17
2 changed files with 1 additions and 83 deletions
@@ -190,6 +190,7 @@ namespace Barotrauma
XElement jobElement = new XElement("job");
jobElement.Add(new XAttribute("name", Name));
jobElement.Add(new XAttribute("identifier", prefab.Identifier));
foreach (KeyValuePair<string, Skill> skill in skills)
{