mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-02-05 22:00:18 +00:00
``/mob/dead/observer`` -> ``/mob/observer/dead`` ``/mob/eye`` -> ``/mob/observer/eye`` Reason being that they are similar in that they both don't interact with the world in any way. Some procs were shared, some checks as well, and it overall makes more sense this way. Plus, there were no ``/mob/dead`` mobs.
14 lines
345 B
Plaintext
14 lines
345 B
Plaintext
// MASK EYE
|
|
//
|
|
// A mob that a cultists controls to look around the station with.
|
|
// It streams chunks as it moves around, which will show it what the cultist can and cannot see.
|
|
|
|
/mob/observer/eye/maskEye
|
|
name = "Eye of Nar-Sie"
|
|
acceleration = 0
|
|
owner_follows_eye = 1
|
|
|
|
/mob/observer/eye/maskEye/New()
|
|
..()
|
|
visualnet = cultnet
|