From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Thu, 13 Jun 2024 02:19:10 +0000 (-0700) Subject: Fix gauze stopping if it stops bleeding (#28844) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=1d4d6c33317f58f05180abb63ddf6419f5296d25;p=space-station-14.git Fix gauze stopping if it stops bleeding (#28844) delete a line Co-authored-by: plykiya --- diff --git a/Content.Server/Medical/HealingSystem.cs b/Content.Server/Medical/HealingSystem.cs index fb6883dfd1..ed33e60dac 100644 --- a/Content.Server/Medical/HealingSystem.cs +++ b/Content.Server/Medical/HealingSystem.cs @@ -70,7 +70,6 @@ public sealed class HealingSystem : EntitySystem _bloodstreamSystem.TryModifyBleedAmount(entity.Owner, healing.BloodlossModifier); if (isBleeding != bloodstream.BleedAmount > 0) { - dontRepeat = true; _popupSystem.PopupEntity(Loc.GetString("medical-item-stop-bleeding"), entity, args.User); } }