From 31836fc586e4a66d002f28d2e89781072174e671 Mon Sep 17 00:00:00 2001 From: Toastical <20125180+Toastical@users.noreply.github.com> Date: Sun, 4 May 2025 21:00:04 +0300 Subject: [PATCH] dont qdel the ID in PDAs (#29218) --- code/game/machinery/cryopod.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index b00a92e8d64..6ce5cbf364e 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -347,7 +347,7 @@ for(var/obj/item/I in items) if(istype(I, /obj/item/pda)) var/obj/item/pda/P = I - QDEL_NULL(P.id) + P.id = null qdel(P) continue if(istype(I, /obj/item/storage/backpack/modstorage)) //Best place for me to put it.