using Content.Server.VoiceMask; using Content.Shared.Implants; namespace Content.Server.DV.Implants; public sealed class SubdermalBionicSyrinxImplantSystem : EntitySystem { public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnInsert); } private void OnInsert(Entity ent, ref ImplantImplantedEvent args) { // Update the name so it's the entities default name. You can't take it off like a voice mask so it's important! ent.Comp.VoiceMaskName = Name(args.Implanted); } }