This commit is contained in:
Ed
2025-08-04 12:56:12 +03:00
parent e059ba05ad
commit e9199b4e77
2 changed files with 2 additions and 1 deletions

View File

@@ -101,7 +101,7 @@ public sealed class CP14BloodMoonCurseRule : GameRuleSystem<CP14BloodMoonCurseRu
if (!Resolve(ent.Owner, ref ent.Comp, false))
return;
_stun.TryParalyze(ent, ent.Comp.EndStunDuration, true);
_stun.TryUpdateParalyzeDuration(ent, ent.Comp.EndStunDuration);
_popup.PopupEntity(Loc.GetString("cp14-bloodmoon-curse-removed"), ent, PopupType.SmallCaution);
if (TryComp<CP14BloodMoonCurseComponent>(ent, out var curseComp))
{

View File

@@ -1,3 +1,4 @@
using System.Numerics;
using Content.Shared._CP14.Religion.Systems;
using Robust.Shared.GameStates;