From a8ba2dca9fe8f89c196655532376df728141d700 Mon Sep 17 00:00:00 2001 From: Sir Warock <67167466+SirWarock@users.noreply.github.com> Date: Mon, 4 May 2026 14:50:12 +0200 Subject: [PATCH] Small clean up --- .../BoundUserInterfaces/LightReplacerMenuBoundUserInterface.cs | 3 --- .../Light/EntitySystems/SharedLightReplacerSystem.cs | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) 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; } }