Fixes the kill pet objective being unable to target certain heads' pets (#68748)

Fixes the kill pet objective
This commit is contained in:
VioletN
2022-07-26 13:03:51 -04:00
committed by GitHub
parent 84f640d4b6
commit ed1b3692d0
@@ -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