Merge pull request #7858 from Fox-McCloud/health-implant-fix

Fixes Health Implants
This commit is contained in:
Crazy Lemon
2017-07-25 03:39:32 -07:00
committed by GitHub
4 changed files with 18 additions and 24 deletions
@@ -0,0 +1,11 @@
/obj/item/weapon/implant/health
name = "health implant"
activated = FALSE
var/healthstring = ""
/obj/item/weapon/implant/health/proc/sensehealth()
if(!imp_in)
return "ERROR"
else
healthstring = "[round(imp_in.getOxyLoss())] - [round(imp_in.getFireLoss())] - [round(imp_in.getToxLoss())] - [round(imp_in.getBruteLoss())]"
return healthstring