mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 20:11:04 +01:00
17 lines
438 B
Plaintext
17 lines
438 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/death(gibbed)
|
|
if(camera)
|
|
camera.status = FALSE
|
|
if(module)
|
|
var/obj/item/gripper/G = locate(/obj/item/gripper) in module
|
|
if(G)
|
|
G.drop_item()
|
|
remove_robot_verbs()
|
|
sql_report_death(src)
|
|
..(gibbed,"shudders violently for a moment, then becomes motionless, its eyes slowly darkening.")
|