From 4795c606700044bbb0cdabc433a0f7468294df5f Mon Sep 17 00:00:00 2001
From: Ghommie <42542238+Ghommie@users.noreply.github.com>
Date: Mon, 23 Sep 2019 16:48:21 +0200
Subject: [PATCH] Reduces holy water message spam for blood/clock cultists.
---
.../chemistry/reagents/other_reagents.dm | 19 +++++++------------
1 file changed, 7 insertions(+), 12 deletions(-)
diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm
index bc64d6636b..ff4d806c54 100644
--- a/code/modules/reagents/chemistry/reagents/other_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm
@@ -200,22 +200,17 @@
pH = 7.5 //God is alkaline
/datum/reagent/water/holywater/on_mob_metabolize(mob/living/L)
- ..()
+ . = ..()
ADD_TRAIT(L, TRAIT_HOLY, id)
+ if(is_servant_of_ratvar(L))
+ to_chat(L, "A fog spreads through your mind, purging the Justiciar's influence!")
+ else if(iscultist(L))
+ to_chat(L, "A fog spreads through your mind, weakening your connection to the veil and purging Nar-sie's influence")
+
/datum/reagent/water/holywater/on_mob_end_metabolize(mob/living/L)
REMOVE_TRAIT(L, TRAIT_HOLY, id)
- ..()
-
-/datum/reagent/water/holywater/reaction_mob(mob/living/M, method=TOUCH, reac_volume)
- if(is_servant_of_ratvar(M))
- to_chat(M, "A fog spreads through your mind, purging the Justiciar's influence!")
- ..()
-
-/datum/reagent/water/holywater/reaction_mob(mob/living/M, method=TOUCH, reac_volume)
- if(iscultist(M))
- to_chat(M, "A fog spreads through your mind, weakening your connection to the veil and purging Nar-sie's influence")
- ..()
+ return ..()
/datum/reagent/water/holywater/on_mob_life(mob/living/carbon/M)
if(!data)