Remove bad Dirty call introduced by PR #20778 (#24076)

The HealOnBuckleHealingComponent is not in Shared/Client code, need not
be networked, and cannot be dirty.
This commit is contained in:
Magnus Larsen
2024-01-14 10:51:38 +00:00
committed by GitHub
parent 971ad5b266
commit 29acc5e945

View File

@@ -44,7 +44,6 @@ namespace Content.Server.Bed
AddComp<HealOnBuckleHealingComponent>(uid);
component.NextHealTime = _timing.CurTime + TimeSpan.FromSeconds(component.HealTime);
_actionsSystem.AddAction(args.BuckledEntity, ref component.SleepAction, SleepingSystem.SleepActionId, uid);
Dirty(uid, component);
return;
}