mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 17:52:36 +00:00
Fix a list qdel in /datum/mind/Destroy() (#90456)
## About The Pull Request this changes `QDEL_LIST(memories)` to `QDEL_LIST_ASSOC_VAL(memories)` ## Why It's Good For The Game proper behavior good ## Changelog 🆑 fix: Fixed improperly cleaning up memories when a mind is deleted. /🆑
This commit is contained in:
@@ -109,7 +109,7 @@
|
||||
/datum/mind/Destroy()
|
||||
SSticker.minds -= src
|
||||
QDEL_NULL(antag_hud)
|
||||
QDEL_LIST(memories)
|
||||
QDEL_LIST_ASSOC_VAL(memories)
|
||||
QDEL_NULL(memory_panel)
|
||||
QDEL_LIST(antag_datums)
|
||||
set_current(null)
|
||||
|
||||
Reference in New Issue
Block a user