From a02b82382220182834605111cba35837005bd6ff Mon Sep 17 00:00:00 2001 From: tonty <39193182+tontyGH@users.noreply.github.com> Date: Mon, 26 Jan 2026 00:38:49 -0500 Subject: [PATCH] Fixes Radioactive Resonance symptom not updating host health (#94977) ## About The Pull Request Fixes #94975 by making the radheal symptom correctly update the host's health after healing. There's not really much else to say. :cl: fix: Viruses that heal their hosts through radiation no longer cause phantom pain. /:cl: --- code/datums/diseases/advance/symptoms/heal.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/datums/diseases/advance/symptoms/heal.dm b/code/datums/diseases/advance/symptoms/heal.dm index 15464252998..92099d101ab 100644 --- a/code/datums/diseases/advance/symptoms/heal.dm +++ b/code/datums/diseases/advance/symptoms/heal.dm @@ -601,6 +601,8 @@ needs_update += carbon_host.adjust_tox_loss(-2 * heal_amt, updating_health = FALSE) var/brute_burn_heal = carbon_host.heal_overall_damage(heal_amt, heal_amt, required_bodytype = healable_bodytypes, updating_health = FALSE) needs_update += brute_burn_heal + if(needs_update) + carbon_host.updatehealth() if(brute_burn_heal && prob(4)) to_chat(carbon_host, span_notice("Your skin glows faintly, and you feel your wounds mending themselves.")) return TRUE