Files
Cody Brittain 3f62424312 [MDB Ignore] [IDB Ignore] Kills off /obj/item/device (#21774)
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>
2026-02-01 05:14:26 +00:00

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