Merge pull request #2784 from Crazylemon64/robo_flash_and_console_tracking

Roboconsole gives loc and health, Drones now flash right
This commit is contained in:
Fox McCloud
2015-12-09 17:45:58 -05:00
4 changed files with 30 additions and 7 deletions
@@ -211,12 +211,12 @@
//Drones killed by damage will gib.
/mob/living/silicon/robot/drone/handle_regular_status_updates()
if(health <= -35 && src.stat != 2)
if(health <= -35 && src.stat != DEAD)
timeofdeath = world.time
death() //Possibly redundant, having trouble making death() cooperate.
gib()
return
..()
return ..() // If you don't return anything here, you won't update status effects, like weakening
/mob/living/silicon/robot/drone/death(gibbed)