- Steam App
- Progress Game (1370410)
- Event type
- patch note
- Published
- 10 August 2023 - 18:09:45 UTC
- Source
- steam_community_announcements
Hey all, as the title states this is just a small hotfix: - make the sacrificing of items in the late-game easier - fixing a potential crash/hangup when sacrificing a large quantity of items (100+) this happened because with each item being removed from the inventory it would do a sort of the entire inventory, which would already take a bit of time when performed once for 100+ items, Additionally all item elements in the inventory UI would get informed about an item being removed from the sacrificial altar, creating an exponential growth in calculation power required. I fixed both these by making them more performant. Each item element now only listens to the "removed_from_sacrificial_altar" signal from its own item, not everyone's. and additionally when the sacrificial altar starts sacrificing items it will pause the inventory sorting and restart it after its done. This improved perform...