Merge pull request #3024 from Cameron653/master

Prevents halloss showing up as actual wounds on self examine
This commit is contained in:
Anewbe
2017-03-01 15:03:44 -06:00
committed by GitHub

View File

@@ -166,11 +166,13 @@
var/list/status = list()
var/brutedamage = org.brute_dam
var/burndamage = org.burn_dam
if(halloss > 0)
/*
if(halloss > 0) //Makes halloss show up as actual wounds on self examine.
if(prob(30))
brutedamage += halloss
if(prob(30))
burndamage += halloss
*/
switch(brutedamage)
if(1 to 20)
status += "bruised"
@@ -460,4 +462,4 @@
/mob/living/carbon/can_feel_pain(var/check_organ)
if(isSynthetic())
return 0
return !(species.flags & NO_PAIN)
return !(species.flags & NO_PAIN)