From 06f19dafc94f0cca3c7369e1f584899e19e138bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlio=20C=C3=A9sar=20Ueti?= <52474532+Mirino97@users.noreply.github.com> Date: Tue, 17 Jan 2023 01:29:00 -0300 Subject: [PATCH] adds Loc.GetString() (#13524) --- Content.Server/Store/Systems/StoreSystem.Ui.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Store/Systems/StoreSystem.Ui.cs b/Content.Server/Store/Systems/StoreSystem.Ui.cs index f7a095f1be..228af4120c 100644 --- a/Content.Server/Store/Systems/StoreSystem.Ui.cs +++ b/Content.Server/Store/Systems/StoreSystem.Ui.cs @@ -159,7 +159,7 @@ public sealed partial class StoreSystem : EntitySystem if (TryComp(buyer, out var mind)) { _admin.Add(LogType.StorePurchase, LogImpact.Low, - $"{ToPrettyString(mind.Owner):player} purchased listing \"{listing.Name}\" from {ToPrettyString(uid)}"); + $"{ToPrettyString(mind.Owner):player} purchased listing \"{Loc.GetString(listing.Name)}\" from {ToPrettyString(uid)}"); } listing.PurchaseAmount++; //track how many times something has been purchased