From 8661bdf3da6255fab45afe52a98d7fe7b837d702 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Mon, 26 Jul 2021 00:04:47 -0700 Subject: [PATCH] Fix typo in inventory component throw --- Content.Server/Inventory/Components/InventoryComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Inventory/Components/InventoryComponent.cs b/Content.Server/Inventory/Components/InventoryComponent.cs index 6ba250d52d..8f1d0d7ad1 100644 --- a/Content.Server/Inventory/Components/InventoryComponent.cs +++ b/Content.Server/Inventory/Components/InventoryComponent.cs @@ -460,7 +460,7 @@ namespace Content.Server.Inventory.Components { if (!HasSlot(slot)) { - throw new InvalidOperationException($"Slow '{slot}' does not exist."); + throw new InvalidOperationException($"Slot '{slot}' does not exist."); } ForceUnequip(slot);