mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-10 23:47:08 +01:00
3f62424312
This has zero reason to exist in our code base. We have no procs or variables tied to this. I removed it to make future modifications cleaner. --------- Signed-off-by: Cody Brittain <1779662+Generalcamo@users.noreply.github.com>
26 lines
670 B
Plaintext
26 lines
670 B
Plaintext
/proc/isassembly(O)
|
|
return istype(O, /obj/item/assembly)
|
|
|
|
/proc/isigniter(O)
|
|
return istype(O, /obj/item/assembly/igniter)
|
|
|
|
/proc/isinfared(O)
|
|
return istype(O, /obj/item/assembly/infra)
|
|
|
|
/proc/isprox(O)
|
|
return istype(O, /obj/item/assembly/prox_sensor)
|
|
|
|
/proc/issignaler(O)
|
|
return istype(O, /obj/item/assembly/signaler)
|
|
|
|
/proc/istimer(O)
|
|
return istype(O, /obj/item/assembly/timer)
|
|
|
|
// IsSpecialAssemblyIf true is an object that can be attached to an assembly holder but is a special thing like a phoron can or door
|
|
/obj/proc/IsSpecialAssembly()
|
|
return FALSE
|
|
|
|
// If true is an object that can hold an assemblyholder object
|
|
/obj/proc/IsAssemblyHolder()
|
|
return FALSE
|