Skip to content

Commit

Permalink
e
Browse files Browse the repository at this point in the history
  • Loading branch information
DOOM authored and DOOM committed May 31, 2024
1 parent 4b69c9c commit 07b7a3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/game/machinery/cryopod.dm
Original file line number Diff line number Diff line change
Expand Up @@ -355,9 +355,9 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li

var/mob/living/carbon/human/cryo_pod = occupant
if(cryo_pod.record_id_ref)
GLOB.data_core.medical -= occupant.record_id_ref
GLOB.data_core.general -= occupant.record_id_ref
GLOB.data_core.security -= occupant.record_id_ref
GLOB.data_core.medical -= cryo_pod.record_id_ref
GLOB.data_core.general -= cryo_pod.record_id_ref
GLOB.data_core.security -= cryo_pod.record_id_ref
qdel(GLOB.data_core.medical[cryo_pod.record_id_ref])
qdel(GLOB.data_core.general[cryo_pod.record_id_ref])
qdel(GLOB.data_core.security[cryo_pod.record_id_ref])
Expand Down

0 comments on commit 07b7a3f

Please sign in to comment.