From 2a82fa459f9a7989cc8b4105dcee635a6697b8f9 Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 1 Apr 2021 22:29:58 +0200 Subject: [PATCH] fixes closeverb icon --- .../Components/Items/Storage/EntityStorageComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameObjects/Components/Items/Storage/EntityStorageComponent.cs b/Content.Server/GameObjects/Components/Items/Storage/EntityStorageComponent.cs index 7c964b764a..e0c9f0956c 100644 --- a/Content.Server/GameObjects/Components/Items/Storage/EntityStorageComponent.cs +++ b/Content.Server/GameObjects/Components/Items/Storage/EntityStorageComponent.cs @@ -472,7 +472,7 @@ namespace Content.Server.GameObjects.Components.Items.Storage } data.Text = Loc.GetString(component.Open ? "Close" : "Open"); - data.IconTexture = component.Open ? "/Textures/Interface/VerbIcons/close.svg.96dpi.png" : "/Textures/Interface/VerbIcons/open.svg.192dpi.png"; + data.IconTexture = component.Open ? "/Textures/Interface/VerbIcons/close.svg.192dpi.png" : "/Textures/Interface/VerbIcons/open.svg.192dpi.png"; } void IExAct.OnExplosion(ExplosionEventArgs eventArgs)