From 1a0b5fb74232095bcab937c64c1184c14867d849 Mon Sep 17 00:00:00 2001 From: SweptWasTaken Date: Fri, 26 Mar 2021 10:55:41 -0700 Subject: [PATCH] HandsGUI uses correct sprites again --- Content.Client/UserInterface/HandsGui.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Content.Client/UserInterface/HandsGui.cs b/Content.Client/UserInterface/HandsGui.cs index 8d35536137..dca55b1526 100644 --- a/Content.Client/UserInterface/HandsGui.cs +++ b/Content.Client/UserInterface/HandsGui.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Client.GameObjects.Components.Items; @@ -52,9 +52,9 @@ namespace Content.Client.UserInterface }), } }); - _leftHandTexture = _resourceCache.GetTexture("/Textures/Interface/Inventory/hand_l.png"); - _middleHandTexture = _resourceCache.GetTexture("/Textures/Interface/Inventory/hand_l.png"); - _rightHandTexture = _resourceCache.GetTexture("/Textures/Interface/Inventory/hand_r.png"); + _leftHandTexture = _resourceCache.GetTexture("/Textures/Interface/Inventory/hand_l_no_letter.png"); + _middleHandTexture = _resourceCache.GetTexture("/Textures/Interface/Inventory/hand_l_no_letter.png"); + _rightHandTexture = _resourceCache.GetTexture("/Textures/Interface/Inventory/hand_r_no_letter.png"); } private Texture HandTexture(HandLocation location)