mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-24 17:11:22 +00:00
28 lines
560 B
Plaintext
28 lines
560 B
Plaintext
#define OBJ_FLAG_ROTATABLE (1<<1) //Can this object be rotated?
|
|
#define OBJ_FLAG_ROTATABLE_ANCHORED (1<<2) // This object can be rotated even while anchored
|
|
#define OBJ_FLAG_SIGNALER (1<<3) // Can this take a signaler? only in use for machinery
|
|
|
|
/obj/proc/iswrench()
|
|
return FALSE
|
|
|
|
/obj/proc/isscrewdriver()
|
|
return FALSE
|
|
|
|
/obj/proc/iswirecutter()
|
|
return FALSE
|
|
|
|
/obj/proc/ismultitool()
|
|
return FALSE
|
|
|
|
/obj/proc/iscrowbar()
|
|
return FALSE
|
|
|
|
/obj/proc/iswelder()
|
|
return FALSE
|
|
|
|
/obj/proc/iscoil()
|
|
return FALSE
|
|
|
|
/obj/proc/ispen()
|
|
return FALSE
|