Skip to content

Commit 31836fc

Browse files
authored
dont qdel the ID in PDAs (#29218)
1 parent 7f07111 commit 31836fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/game/machinery/cryopod.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@
347347
for(var/obj/item/I in items)
348348
if(istype(I, /obj/item/pda))
349349
var/obj/item/pda/P = I
350-
QDEL_NULL(P.id)
350+
P.id = null
351351
qdel(P)
352352
continue
353353
if(istype(I, /obj/item/storage/backpack/modstorage)) //Best place for me to put it.

0 commit comments

Comments
 (0)