From d1b596a7ff39399ec2cb4a5bc196e333bc526b0a Mon Sep 17 00:00:00 2001 From: vect0r <71346830+Vect0r2@users.noreply.github.com> Date: Sun, 12 Mar 2023 18:57:11 -0700 Subject: [PATCH] Ethereal involuntary discharge fix (#73919) ## About The Pull Request fixes #73911 ## Why It's Good For The Game Double text = bad ## Changelog :cl: fix: Ethereal discharge no longer alerts you twice that you did it. /:cl: --- code/modules/surgery/organs/stomach/stomach_ethereal.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/surgery/organs/stomach/stomach_ethereal.dm b/code/modules/surgery/organs/stomach/stomach_ethereal.dm index 5ce55f5b4c5..d8d74fcf9ab 100644 --- a/code/modules/surgery/organs/stomach/stomach_ethereal.dm +++ b/code/modules/surgery/organs/stomach/stomach_ethereal.dm @@ -96,8 +96,7 @@ carbon.cut_overlay(overcharge) tesla_zap(carbon, 2, crystal_charge*2.5, ZAP_OBJ_DAMAGE | ZAP_LOW_POWER_GEN | ZAP_ALLOW_DUPLICATES) adjust_charge(ETHEREAL_CHARGE_FULL - crystal_charge) - to_chat(carbon, span_warning("You violently discharge energy!")) - carbon.visible_message(span_danger("[carbon] violently discharges energy!")) + carbon.visible_message(span_danger("[carbon] violently discharges energy!"), span_warning("You violently discharge energy!")) if(prob(10)) //chance of developing heart disease to dissuade overcharging oneself var/datum/disease/D = new /datum/disease/heart_failure