Skip to content

Commit

Permalink
Update prop_neutral.dm
Browse files Browse the repository at this point in the history
Verb is only processed upon initial ingestion
  • Loading branch information
wshuwshuwshi authored Jul 5, 2024
1 parent 5c7f211 commit 94b7e2c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/modules/reagents/chemistry_properties/prop_neutral.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 94b7e2c

Please sign in to comment.