diff --git a/code/modules/surgery/organs/internal/heart/heart_ethereal.dm b/code/modules/surgery/organs/internal/heart/heart_ethereal.dm index bcc207af8a1..8e91d6d7ae1 100644 --- a/code/modules/surgery/organs/internal/heart/heart_ethereal.dm +++ b/code/modules/surgery/organs/internal/heart/heart_ethereal.dm @@ -239,9 +239,9 @@ playsound(get_turf(regenerating), 'sound/effects/ethereal_revive.ogg', 100) to_chat(regenerating, span_purple("You burst out of the crystal with vigour... but you feel as if you should keep safe for a little while.")) //NOVA EDIT CHANGE - Ethereal Rework 2024 - ORIGINAL: to_chat(regenerating, span_notice("You burst out of the crystal with vigour... But at a cost.")) - regenerating.apply_status_effect(/datum/status_effect/vulnerable_to_damage) //NOVA EDIT CHANGE - This lasts for five minutes, the full duration of the cooldown. - regenerating.gain_trauma(picked_trauma, TRAUMA_RESILIENCE_SURGERY) //NOVA EDIT CHANGE - Ethereal Rework 2024 - We decided to make them not experience the traumas. - regenerating.revive(HEAL_ALL & ~HEAL_REFRESH_ORGANS) + regenerating.revive(HEAL_ALL & ~HEAL_REFRESH_ORGANS) //NOVA EDIT CHANGE - Ethereal Rework 2024 - Original: regenerating.gain_trauma(picked_trauma, TRAUMA_RESILIENCE_SURGERY) + regenerating.gain_trauma(picked_trauma, TRAUMA_RESILIENCE_SURGERY) //NOVA EDIT CHANGE - Ethereal Rework 2024 - Original: regenerating.revive(HEAL_ALL & ~HEAL_REFRESH_ORGANS) + regenerating.apply_status_effect(/datum/status_effect/vulnerable_to_damage) //NOVA EDIT ADDITION - This lasts for five minutes, the full duration of the cooldown. // revive calls fully heal -> deletes the crystal. // this qdeleted check is just for sanity. if(!QDELETED(src))