From 9b42c1f69b1670537931a784f9a5201b557e20b8 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Thu, 29 Jul 2021 13:06:18 +0200 Subject: [PATCH] Fix bad localization string in secret stash. --- Content.Server/Storage/Components/SecretStashComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Storage/Components/SecretStashComponent.cs b/Content.Server/Storage/Components/SecretStashComponent.cs index b202ab19db..30af3865fc 100644 --- a/Content.Server/Storage/Components/SecretStashComponent.cs +++ b/Content.Server/Storage/Components/SecretStashComponent.cs @@ -81,7 +81,7 @@ namespace Content.Server.Storage.Components if (_itemContainer.ContainedEntity == null) return false; - Owner.PopupMessage(user, Loc.GetString("There was something inside {0}!", ("stash", SecretPartName))); + Owner.PopupMessage(user, Loc.GetString("comp-secret-stash-action-get-item-found-something", ("stash", SecretPartName))); if (user.TryGetComponent(out HandsComponent? hands)) {