From 735ba70f4a127b40f26ea04adf20a0612231ae4b Mon Sep 17 00:00:00 2001 From: zumorica Date: Thu, 14 May 2020 16:08:35 +0200 Subject: [PATCH] Remove unused using statement --- .../GameObjects/Components/Items/ClientHandsComponent.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Client/GameObjects/Components/Items/ClientHandsComponent.cs b/Content.Client/GameObjects/Components/Items/ClientHandsComponent.cs index 4b465454fe..7ef5ab94fc 100644 --- a/Content.Client/GameObjects/Components/Items/ClientHandsComponent.cs +++ b/Content.Client/GameObjects/Components/Items/ClientHandsComponent.cs @@ -6,7 +6,6 @@ using System.Linq; using Content.Client.Interfaces.GameObjects; using Content.Client.UserInterface; using Content.Shared.GameObjects; -using Mono.Cecil; using Robust.Client.GameObjects; using Robust.Client.Interfaces.GameObjects.Components; using Robust.Shared.GameObjects; @@ -145,6 +144,8 @@ namespace Content.Client.GameObjects public void RefreshInHands() { + if (!Initialized) return; + foreach (var (hand, entity) in _hands) { SetInHands(hand, entity);