using Content.Server._Harmony.Objectives.Components; using Content.Shared.Objectives.Components; namespace Content.Server._Harmony.Objectives.Systems; public sealed class NoCompletionObjectiveSystem : EntitySystem { public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnGetProgress); } private void OnGetProgress(Entity entity, ref ObjectiveGetProgressEvent args) { args.Progress = 0f; } }