mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-21 23:07:04 +01:00
* Day 1 * Circuits, Bots, UAV * Fixes * Cleaning * Finished Science * e * asdasd * aesfesf * Fix Medibots (including the bee one) * Bleh * Fixes RPD with some code improvements * RCON Patch * RCON PATCHES * Rename popper.tsx to Popper.tsx * Rename popper.stories.js to Popper.stories.js * Yarn and Popper Updates * I am going to shit bricks * So Tired * asdas * Finally fixed tanks * Radio is fixed * Fixes Pipes * RCD SCROLLING! * Fixes Chat (because everyone uses hybrid???) * Fixes bugged themes * habhabahab - Fixes Air Alarm modes * Fixes Medibot UI and UI Action Buttons * Fixing say_emphasis missing on NIF messages * a
30 lines
493 B
Plaintext
30 lines
493 B
Plaintext
/proc/isassembly(O)
|
|
if(istype(O, /obj/item/assembly))
|
|
return 1
|
|
return 0
|
|
|
|
/proc/isigniter(O)
|
|
if(istype(O, /obj/item/assembly/igniter))
|
|
return 1
|
|
return 0
|
|
|
|
/proc/isinfared(O)
|
|
if(istype(O, /obj/item/assembly/infra))
|
|
return 1
|
|
return 0
|
|
|
|
/proc/isprox(O)
|
|
if(istype(O, /obj/item/assembly/prox_sensor))
|
|
return 1
|
|
return 0
|
|
|
|
/proc/issignaler(O)
|
|
if(istype(O, /obj/item/assembly/signaler))
|
|
return 1
|
|
return 0
|
|
|
|
/proc/istimer(O)
|
|
if(istype(O, /obj/item/assembly/timer))
|
|
return 1
|
|
return 0
|