From 94b7e2c12dbe64751e68d9d23ff2c11aa1c10d8d Mon Sep 17 00:00:00 2001 From: wshuwshuwshi <91352251+wshuwshuwshi@users.noreply.github.com> Date: Thu, 4 Jul 2024 22:23:59 -0600 Subject: [PATCH] Update prop_neutral.dm Verb is only processed upon initial ingestion --- code/modules/reagents/chemistry_properties/prop_neutral.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry_properties/prop_neutral.dm b/code/modules/reagents/chemistry_properties/prop_neutral.dm index f0ad0d9bdb33..c6212c4ad6d9 100644 --- a/code/modules/reagents/chemistry_properties/prop_neutral.dm +++ b/code/modules/reagents/chemistry_properties/prop_neutral.dm @@ -534,9 +534,11 @@ remove_verb(chem_host, /mob/living/carbon/human/proc/psychic_whisper) to_chat(chem_host, SPAN_NOTICE("The pain in your head subsides, and you are left feeling strangely alone.")) +/datum/chem_property/neutral/encephalophrasive/reaction_mob(mob/chem_host, method=INGEST, volume, potency) + add_verb(chem_host, /mob/living/carbon/human/proc/psychic_whisper) + /datum/chem_property/neutral/encephalophrasive/process(mob/living/chem_host, potency = 1, delta_time) chem_host.pain.apply_pain(1 * potency) - add_verb(chem_host, /mob/living/carbon/human/proc/psychic_whisper) /datum/chem_property/neutral/encephalophrasive/process_overdose(mob/living/chem_host, potency = 1, delta_time) chem_host.apply_damage(0.5 * potency * POTENCY_MULTIPLIER_VHIGH * delta_time, BRAIN)