diff --git a/Robust.Client/Graphics/Font.cs b/Robust.Client/Graphics/Font.cs index c714bb6d4..da627769c 100644 --- a/Robust.Client/Graphics/Font.cs +++ b/Robust.Client/Graphics/Font.cs @@ -133,7 +133,7 @@ namespace Robust.Client.Graphics 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;