From ee7a7b86567bdd21538a3763397e1d83e9d5f977 Mon Sep 17 00:00:00 2001 From: SapphicOverload Date: Fri, 23 Aug 2024 10:53:04 -0400 Subject: [PATCH] Update cryopod.dm --- 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 f813a0e5a397..651e29d4fbb1 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -292,7 +292,7 @@ GLOBAL_LIST_EMPTY(cryopod_computers) if((O.type in subtypesof(/datum/objective/assassinate)) && O.check_completion()) //kill once/kill+clone objective that's already been completed, don't give a new objective continue O.target = null - O.find_target() + O.find_target(blacklist = list(mob_occupant.mind)) // don't pick the same person again, they're about to be deleted O.update_explanation_text() var/list/owners = O.get_owners()