- Steam App
- Awakened: Dark Space (1469490)
- Event type
- patch note
- Published
- 30 November 2020 - 20:24:59 UTC
- Source
- steam_community_announcements
So what I got as feedback so far is about the start being boring and some bugs. I also did quite a bit more testing and hopefully resolved most bug related issues. Savegame: I was finally able diagnose the savegame issues. I'm using a pre-implemented solution to save data which does work fairly well but the issue was that when I add new objects that should be saved they have to be added to the list of saved objects. The problem that occured, which took a bit to find out, was that the id which is used to find the reference to the object on load where all the data is given to, was not staying the same, so the system wasn't able to find it. So I added a check which makes sure when I search for all objects, that should be saved, that all the existing ones copy over their old id so that it always stays the same.. no idea why this is not by default a thing but oh well.. atleast it should not c...