diff --git a/Content.Client/_DV/Light/BoundUserInterfaces/LightReplacerMenuBoundUserInterface.cs b/Content.Client/_DV/Light/BoundUserInterfaces/LightReplacerMenuBoundUserInterface.cs index 8d967954d9..83ae6be276 100644 --- a/Content.Client/_DV/Light/BoundUserInterfaces/LightReplacerMenuBoundUserInterface.cs +++ b/Content.Client/_DV/Light/BoundUserInterfaces/LightReplacerMenuBoundUserInterface.cs @@ -15,9 +15,6 @@ public sealed class LightReplacerMenuBoundUserInterface(EntityUid owner, Enum ui private SimpleRadialMenu? _menu; - private readonly EntProtoId _ejectTubes = "EjectTubes"; - private readonly EntProtoId _ejectBulbs = "EjectBulbs"; - protected override void Open() { base.Open(); diff --git a/Content.Shared/Light/EntitySystems/SharedLightReplacerSystem.cs b/Content.Shared/Light/EntitySystems/SharedLightReplacerSystem.cs index 72c8499cb1..964876d09b 100644 --- a/Content.Shared/Light/EntitySystems/SharedLightReplacerSystem.cs +++ b/Content.Shared/Light/EntitySystems/SharedLightReplacerSystem.cs @@ -181,7 +181,7 @@ public sealed class SharedLightReplacerSystem : EntitySystem // There is no Clie && _metaDataQuery.TryComp(fixtureBulbUid, out var metaData) && metaData.EntityName == activeType) { - _popup.PopupClient(Loc.GetString("comp-light-replacer-same-light", ("light-name", fixtureBulbUid)), fixture, userUid, PopupType.Medium); + _popup.PopupClient(Loc.GetString("comp-light-replacer-same-light", ("light-name", fixtureBulbUid)), fixture, userUid); return false; } }