diff --git a/Content.Client/Crayon/CrayonDecalVisualizer.cs b/Content.Client/Crayon/CrayonDecalVisualizer.cs index bfeac8b9f6..83d7985a42 100644 --- a/Content.Client/Crayon/CrayonDecalVisualizer.cs +++ b/Content.Client/Crayon/CrayonDecalVisualizer.cs @@ -1,4 +1,4 @@ -using Content.Shared.Crayon; +using Content.Shared.Crayon; using JetBrains.Annotations; using Robust.Client.GameObjects; using Robust.Shared.Maths; @@ -19,9 +19,9 @@ namespace Content.Client.Crayon sprite.LayerSetState(0, state); } - if (component.TryGetData(CrayonVisuals.Color, out Color color)) + if (component.TryGetData(CrayonVisuals.Color, out string color)) { - sprite.LayerSetColor(0, color); + sprite.LayerSetColor(0, Color.FromName(color)); } if (component.TryGetData(CrayonVisuals.Rotation, out Angle rotation))