From 02242324ef05d68ebdef7ba9cbaddc87afc7ce44 Mon Sep 17 00:00:00 2001 From: Galactic Chimp <63882831+GalacticChimp@users.noreply.github.com> Date: Mon, 19 Jul 2021 22:55:00 +0200 Subject: [PATCH] Fixed 2 localisation instances (#4289) --- Content.Server/Hands/HandsSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Hands/HandsSystem.cs b/Content.Server/Hands/HandsSystem.cs index 86c07fa909..703b0a2cc9 100644 --- a/Content.Server/Hands/HandsSystem.cs +++ b/Content.Server/Hands/HandsSystem.cs @@ -165,7 +165,7 @@ namespace Content.Server.Hands if (!inventory.TryGetSlotItem(equipmentSlot, out ItemComponent? equipmentItem) || !equipmentItem.Owner.TryGetComponent(out ServerStorageComponent? storageComponent)) { - plyEnt.PopupMessage(Loc.GetString("hands-system-missing-equipment-slot", ("equipment", SlotNames[equipmentSlot].ToLower()))); + plyEnt.PopupMessage(Loc.GetString("hands-system-missing-equipment-slot", ("slotName", SlotNames[equipmentSlot].ToLower()))); return; } @@ -177,7 +177,7 @@ namespace Content.Server.Hands { if (storageComponent.StoredEntities.Count == 0) { - plyEnt.PopupMessage(Loc.GetString("hands-system-empty-equipment-slot", ("equipment", SlotNames[equipmentSlot].ToLower()))); + plyEnt.PopupMessage(Loc.GetString("hands-system-empty-equipment-slot", ("slotName", SlotNames[equipmentSlot].ToLower()))); } else {