Fix crew manifest following for silicon mobs. (#15181)

Title.
This commit is contained in:
Sparky
2022-11-27 18:44:01 +01:00
committed by GitHub
parent c980ce8a32
commit 2bea8acbb6
2 changed files with 9 additions and 3 deletions
+3 -3
View File
@@ -192,9 +192,9 @@
if(href_list["action"] == "follow") // from manifest.vue
var/mob/abstract/observer/O = usr
if(istype(O))
for(var/mob/living/carbon/human/H in human_mob_list)
if(istype(H) && H.real_name == href_list["name"])
O.ManualFollow(H)
for(var/mob/living/M in player_list)
if(istype(M) && M.real_name == href_list["name"])
O.ManualFollow(M)
break
. = ..()