mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 04:51:32 +01:00
9 lines
259 B
Plaintext
9 lines
259 B
Plaintext
/mob/living/silicon/decoy/death(gibbed)
|
|
if(stat == DEAD) return
|
|
icon_state = "ai-crash"
|
|
spawn(10)
|
|
explosion(loc, 3, 6, 12, 15)
|
|
for(var/obj/machinery/ai_status_display/O in SSmachinery.all_status_displays) //change status
|
|
O.mode = 2
|
|
return ..(gibbed)
|