From 9a49fbe936b7805e954e3e80623362d000e17f2f Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Mon, 11 Sep 2023 15:57:27 -0700 Subject: [PATCH] Fix failing to insert into storage messages not being localized (#20049) --- Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index fac772371d..b35a4c3e25 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -572,7 +572,7 @@ public abstract class SharedStorageSystem : EntitySystem if (!CanInsert(uid, toInsert.Value, out var reason, storageComp)) { - _popupSystem.PopupClient(reason ?? Loc.GetString("comp-storage-cant-insert"), uid, player); + _popupSystem.PopupClient(Loc.GetString(reason ?? "comp-storage-cant-insert"), uid, player); return false; } -- 2.51.2