From 6419e63b8064138fb7f261cb66e1d2da671e5377 Mon Sep 17 00:00:00 2001 From: fox Date: Wed, 17 Jan 2024 17:26:25 +0300 Subject: [PATCH] My IDE reformatted this :husk: --- Content.Server/Hands/Systems/HandsSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Hands/Systems/HandsSystem.cs b/Content.Server/Hands/Systems/HandsSystem.cs index cb5a9f421f4..a74a30d0c76 100644 --- a/Content.Server/Hands/Systems/HandsSystem.cs +++ b/Content.Server/Hands/Systems/HandsSystem.cs @@ -165,7 +165,7 @@ private bool HandleThrowItem(ICommonSession? playerSession, EntityCoordinates co if (playerSession == null) return false; - if (playerSession.AttachedEntity is not { Valid: true } player || + if (playerSession.AttachedEntity is not {Valid: true} player || !Exists(player) || ContainerSystem.IsEntityInContainer(player) || !TryComp(player, out HandsComponent? hands) ||