Hair dyer verb texture fix (#3127)

This commit is contained in:
Hero010h 2025-09-27 00:40:05 +03:00 committed by GitHub
parent a3e1b90c5b
commit 979676069f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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; },
});
}