From ed1b3692d0e1543e2800aa05dfd6159ed456e868 Mon Sep 17 00:00:00 2001 From: VioletN Date: Tue, 26 Jul 2022 13:03:51 -0400 Subject: [PATCH] Fixes the kill pet objective being unable to target certain heads' pets (#68748) Fixes the kill pet objective --- code/modules/antagonists/traitor/objectives/kill_pet.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/traitor/objectives/kill_pet.dm b/code/modules/antagonists/traitor/objectives/kill_pet.dm index ff1e18ac2ce..2520fba4cc5 100644 --- a/code/modules/antagonists/traitor/objectives/kill_pet.dm +++ b/code/modules/antagonists/traitor/objectives/kill_pet.dm @@ -71,7 +71,7 @@ var/pet_type = possible_heads[target.title] if(islist(pet_type)) for(var/type in pet_type) - target_pet = locate(pet_type) in GLOB.mob_living_list + target_pet = locate(type) in GLOB.mob_living_list if(target_pet) break else