From 979676069f217eb6dabf4cb28e8be6a8f612c534 Mon Sep 17 00:00:00 2001 From: Hero010h <163765999+Hero010h@users.noreply.github.com> Date: Sat, 27 Sep 2025 00:40:05 +0300 Subject: [PATCH] Hair dyer verb texture fix (#3127) --- Content.Server/_Sunrise/HairDye/HairDyeSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/_Sunrise/HairDye/HairDyeSystem.cs b/Content.Server/_Sunrise/HairDye/HairDyeSystem.cs index 95ef9c1cd2..42e35f3275 100644 --- a/Content.Server/_Sunrise/HairDye/HairDyeSystem.cs +++ b/Content.Server/_Sunrise/HairDye/HairDyeSystem.cs @@ -40,7 +40,7 @@ public sealed class HairDyeSystem : EntitySystem args.Verbs.Add(new InteractionVerb() { Text = (comp.Mode) ? Loc.GetString("hairdye-switch-hair") : Loc.GetString("hairdye-switch-facial"), - Icon = new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/Verbicons/dot.svg.192dpi.png")), + Icon = new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/VerbIcons/dot.svg.192dpi.png")), Act = () => { comp.Mode = !comp.Mode; }, }); }