mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-20 23:21:20 +00:00
21 lines
532 B
Plaintext
21 lines
532 B
Plaintext
/mob/living/silicon/robot/dust()
|
|
//Delete the MMI first so that it won't go popping out.
|
|
if(mmi)
|
|
qdel(mmi)
|
|
..()
|
|
|
|
/mob/living/silicon/robot/ash()
|
|
if(mmi)
|
|
qdel(mmi)
|
|
..()
|
|
|
|
/mob/living/silicon/robot/death(gibbed)
|
|
if(camera)
|
|
camera.status = 0
|
|
if(module)
|
|
var/obj/item/weapon/gripper/G = locate(/obj/item/weapon/gripper) in module
|
|
if(G) G.drop_item()
|
|
remove_robot_verbs()
|
|
sql_report_cyborg_death(src)
|
|
..(gibbed,"shudders violently for a moment, then becomes motionless, its eyes slowly darkening.")
|