diff --git a/Robust.Client/Graphics/Font.cs b/Robust.Client/Graphics/Font.cs index c714bb6d4be..da627769c2e 100644 --- a/Robust.Client/Graphics/Font.cs +++ b/Robust.Client/Graphics/Font.cs @@ -133,7 +133,7 @@ public override float DrawChar(DrawingHandleBase handle, Rune rune, Vector2 base baseline += new Vector2(metrics.Value.BearingX, -metrics.Value.BearingY); if(handle is DrawingHandleWorld worldhandle) - worldhandle.DrawTextureRect(texture, Box2.FromDimensions(baseline, texture.Size)); + worldhandle.DrawTextureRect(texture, Box2.FromDimensions(baseline, texture.Size), color); else handle.DrawTexture(texture, baseline, color); return metrics.Value.Advance;