From 8cd5436f9fd53cfaf4ed6c9ec8bff8bfa10f2fad Mon Sep 17 00:00:00 2001 From: Kirus59 <145689588+Kirus59@users.noreply.github.com> Date: Sun, 29 Dec 2024 11:54:53 +0300 Subject: [PATCH] fix comments --- Content.Server/SS220/CultYogg/Cultists/CultYoggSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/SS220/CultYogg/Cultists/CultYoggSystem.cs b/Content.Server/SS220/CultYogg/Cultists/CultYoggSystem.cs index bb57cad20ebf85..474faa1d009a7b 100644 --- a/Content.Server/SS220/CultYogg/Cultists/CultYoggSystem.cs +++ b/Content.Server/SS220/CultYogg/Cultists/CultYoggSystem.cs @@ -354,7 +354,7 @@ private void OnSaintWaterDrinked(Entity entity, ref OnSaintWa if (purifyedComp.TotalAmountOfHolyWater >= purifyedComp.AmountToPurify) { - //After cleansing effect + //After purifying effect _audio.PlayEntity(purifyedComp.PurifyingCollection, entity, entity); //Removing stage visuals, cause later component will be removed @@ -364,7 +364,7 @@ private void OnSaintWaterDrinked(Entity entity, ref OnSaintWa RemComp(entity); } - purifyedComp.PurifyingDecayEventTime = _timing.CurTime + purifyedComp.BeforeDeclinesTime; //setting timer, when cleansing will be removed + purifyedComp.PurifyingDecayEventTime = _timing.CurTime + purifyedComp.BeforeDeclinesTime; //setting timer, when purifying will be removed } #endregion }