Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirus59 committed Dec 29, 2024
1 parent 26d5adf commit 8cd5436
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Content.Server/SS220/CultYogg/Cultists/CultYoggSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ private void OnSaintWaterDrinked(Entity<CultYoggComponent> 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
Expand All @@ -364,7 +364,7 @@ private void OnSaintWaterDrinked(Entity<CultYoggComponent> entity, ref OnSaintWa
RemComp<CultYoggComponent>(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
}

0 comments on commit 8cd5436

Please sign in to comment.