/client/proc/mentor_follow(mob/living/M) if(!is_mentor()) return var/orbiting = TRUE if(!isobserver(usr)) mentor_datum.following = M usr.reset_perspective(M) verbs += /client/proc/mentor_unfollow to_chat(usr, "Click the \"Stop Following\" button here or in the Mentor tab to stop following [key_name(M)].") orbiting = FALSE else var/mob/dead/observer/O = usr O.ManualFollow(M) to_chat(GLOB.admins, "MENTOR: [key_name(usr)] is now [orbiting ? "orbiting" : "following"] [key_name(M)][key_name(M)][orbiting ? " as a ghost" : ""].") log_mentor("[key_name(usr)] [orbiting ? "is now orbiting" : "began following"][key_name(M)][orbiting ? " as a ghost" : ""].") /client/proc/mentor_unfollow() set category = "Mentor" set name = "Stop Following" set desc = "Stop following the followed." if(!is_mentor()) return usr.reset_perspective() verbs -= /client/proc/mentor_unfollow to_chat(GLOB.admins, "MENTOR: [key_name(usr)] is no longer following [key_name(mentor_datum.following)].") log_mentor("[key_name(usr)] stopped following [key_name(mentor_datum.following)].") mentor_datum.following = null