mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-01-03 22:13:24 +00:00
Implementation of a cult visual network, similar to the original camera network. Includes the "eye" itself and the initial construction of a mob that can control one.
16 lines
325 B
Plaintext
16 lines
325 B
Plaintext
// CULT NET
|
|
//
|
|
// The datum containing all the chunks.
|
|
|
|
/datum/visualnet/cult
|
|
chunk_type = /datum/chunk/cult
|
|
|
|
/datum/visualnet/cult/proc/provides_vision(var/mob/living/L)
|
|
return L.provides_cult_vision()
|
|
|
|
/mob/living/proc/provides_cult_vision()
|
|
return 1
|
|
|
|
/mob/living/silicon/provides_cult_vision()
|
|
return 0
|