mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-27 18:42:44 +00:00
8 lines
239 B
Plaintext
8 lines
239 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 world) //change status
|
|
O.mode = 2
|
|
return ..(gibbed) |