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:
Lucy
2025-04-07 13:30:20 -04:00
committed by Shadow-Quill
parent 94b7f9ffb0
commit 449bc3a25a

View File

@@ -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)