From: lzk <124214523+lzk228@users.noreply.github.com> Date: Fri, 15 Mar 2024 15:23:58 +0000 (+0100) Subject: Fix light replacer popup (#26136) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=456b2a7b5613fdedc508d930bc7842211664c73f;p=space-station-14.git Fix light replacer popup (#26136) --- 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); }