diff --git a/Content.Server/Light/EntitySystems/LightReplacerSystem.cs b/Content.Server/Light/EntitySystems/LightReplacerSystem.cs index 1260a0dd0d0..71cc0173daf 100644 --- a/Content.Server/Light/EntitySystems/LightReplacerSystem.cs +++ b/Content.Server/Light/EntitySystems/LightReplacerSystem.cs @@ -233,7 +233,7 @@ public bool TryInsertBulbsFromStorage(EntityUid replacerUid, EntityUid storageUi // 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); }