mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Fixes #860
This commit is contained in:
@@ -33,6 +33,7 @@
|
|||||||
C.adjustCloneLoss(-healing_amount)
|
C.adjustCloneLoss(-healing_amount)
|
||||||
C.adjustBrainLoss(-healing_amount)
|
C.adjustBrainLoss(-healing_amount)
|
||||||
C.restore_blood()
|
C.restore_blood()
|
||||||
|
C.species.create_organs(C)
|
||||||
C.restore_all_organs()
|
C.restore_all_organs()
|
||||||
C.blinded = 0
|
C.blinded = 0
|
||||||
C.eye_blind = 0
|
C.eye_blind = 0
|
||||||
|
|||||||
@@ -27,9 +27,10 @@
|
|||||||
C.radiation = 0
|
C.radiation = 0
|
||||||
C.heal_overall_damage(C.getBruteLoss(), C.getFireLoss())
|
C.heal_overall_damage(C.getBruteLoss(), C.getFireLoss())
|
||||||
C.reagents.clear_reagents()
|
C.reagents.clear_reagents()
|
||||||
C.restore_all_organs(ignore_prosthetic_prefs=1) //Covers things like fractures and other things not covered by the above.
|
|
||||||
if(ishuman(C))
|
if(ishuman(C))
|
||||||
var/mob/living/carbon/human/H = src
|
var/mob/living/carbon/human/H = src
|
||||||
|
H.species.create_organs(H)
|
||||||
|
H.restore_all_organs(ignore_prosthetic_prefs=1) //Covers things like fractures and other things not covered by the above.
|
||||||
H.restore_blood()
|
H.restore_blood()
|
||||||
H.mutations.Remove(HUSK)
|
H.mutations.Remove(HUSK)
|
||||||
H.status_flags -= DISFIGURED
|
H.status_flags -= DISFIGURED
|
||||||
|
|||||||
Reference in New Issue
Block a user