fix observe verb defaulting to cyborg when cancelled (#33308)

This commit is contained in:
nervere
2022-09-21 17:43:25 -04:00
committed by GitHub
parent 0d05e14608
commit 110f56f184

View File

@@ -196,6 +196,8 @@
var/list/mobs = getmobs()
var/input = input("Please, select a mob!", "Haunt", null, null) as null|anything in mobs
if(!input)
return
var/mob/target = mobs[input]
manual_follow(target)