From 456b2a7b5613fdedc508d930bc7842211664c73f Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Fri, 15 Mar 2024 16:23:58 +0100 Subject: [PATCH] Fix light replacer popup (#26136) --- Content.Server/Light/EntitySystems/LightReplacerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Light/EntitySystems/LightReplacerSystem.cs b/Content.Server/Light/EntitySystems/LightReplacerSystem.cs index 1260a0dd0d..71cc0173da 100644 --- a/Content.Server/Light/EntitySystems/LightReplacerSystem.cs +++ b/Content.Server/Light/EntitySystems/LightReplacerSystem.cs @@ -233,7 +233,7 @@ public sealed class LightReplacerSystem : SharedLightReplacerSystem // show some message if success if (insertedBulbs > 0 && userUid != null) { - var msg = Loc.GetString("comp-light-replacer-refill-from-storage", ("light-replacer", storageUid)); + var msg = Loc.GetString("comp-light-replacer-refill-from-storage", ("light-replacer", replacerUid)); _popupSystem.PopupEntity(msg, replacerUid, userUid.Value, PopupType.Medium); } -- 2.51.2