mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-01 21:13:47 +00:00
-Wow it sure took a while before we found out what was forgotten during the original citadel port.
23 lines
686 B
Plaintext
23 lines
686 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()
|
|
var/obj/item/device/dogborg/sleeper/S = locate(/obj/item/device/dogborg/sleeper) in module //VOREStation edit.
|
|
if(S) S.go_out() //VOREStation edit.
|
|
remove_robot_verbs()
|
|
sql_report_cyborg_death(src)
|
|
..(gibbed,"shudders violently for a moment, then becomes motionless, its eyes slowly darkening.")
|