Legion Core - Burn Damage Fix (#14558)

* Regen Core Body Temp Fix

* Update buffs.dm

* Update buffs.dm
This commit is contained in:
Kiyahitayika
2020-10-15 07:52:21 -04:00
committed by GitHub
parent 69b59c68a7
commit 2e1ea6e5fd
+3 -1
View File
@@ -219,13 +219,15 @@
owner.adjustBruteLoss(-25)
owner.adjustFireLoss(-25)
owner.remove_CC()
owner.bodytemperature = BODYTEMP_NORMAL
if(ishuman(owner))
var/mob/living/carbon/human/H = owner
H.bodytemperature = H.dna.species.body_temperature
for(var/thing in H.bodyparts)
var/obj/item/organ/external/E = thing
E.internal_bleeding = FALSE
E.mend_fracture()
else
owner.bodytemperature = BODYTEMP_NORMAL
return TRUE
/datum/status_effect/regenerative_core/on_remove()