From e4758a2e7963a1ab747f8ec3f602bb69ce7eec12 Mon Sep 17 00:00:00 2001 From: SatinIsle <98125273+SatinIsle@users.noreply.github.com> Date: Fri, 16 May 2025 00:12:35 +0100 Subject: [PATCH] Fix lleill drain message (#17708) Fixes the glamour drain ability showing the "contact has been broken" message when it is successful. --- .../mob/living/carbon/human/species/lleill/lleill_abilities.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/lleill/lleill_abilities.dm b/code/modules/mob/living/carbon/human/species/lleill/lleill_abilities.dm index f809e895578..911dc2b2fa2 100644 --- a/code/modules/mob/living/carbon/human/species/lleill/lleill_abilities.dm +++ b/code/modules/mob/living/carbon/human/species/lleill/lleill_abilities.dm @@ -313,9 +313,8 @@ if(contact_type == "Custom") src.visible_message(span_infoplain("[custom_text]")) if(!do_after(src, 10 SECONDS, chosen_target, exclusive = TASK_USER_EXCLUSIVE)) - return - else src.visible_message(span_infoplain(span_bold("\The [src]") + " and \the [chosen_target] break contact before energy has been transferred.")) + return src.visible_message(span_infoplain(span_bold("\The [src]") + " and \the [chosen_target] complete their contact.")) species.lleill_energy = species.lleill_energy_max nutrition += (chosen_target.nutrition / 2)