From 47a89d509f8d7a39b2708e1b82087f84e72664ae Mon Sep 17 00:00:00 2001 From: SchrodingersWolf <108938550+SchrodingersWolf@users.noreply.github.com> Date: Wed, 26 Feb 2025 05:22:04 -0500 Subject: [PATCH] Emagman buff (#28460) --- 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 765af9c34c680..44a917c543dd3 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -136,7 +136,7 @@ item["name"] = I.name frozen_items += list(item) - if(preserve_status == CRYO_OBJECTIVE) + if(preserve_status == CRYO_OBJECTIVE || istype(I, /obj/item/card/id/captains_spare)) objective_items += I I.forceMove(src) RegisterSignal(I, COMSIG_MOVABLE_MOVED, PROC_REF(item_got_removed))