From 3d60965fd9d42c61b73f8ee10ca659b4718b5e86 Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Thu, 17 Dec 2020 13:08:20 +0100 Subject: [PATCH] Fix casing in Show BB button --- Content.Client/Sandbox/SandboxManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Sandbox/SandboxManager.cs b/Content.Client/Sandbox/SandboxManager.cs index c6c7d03f20..0f0f727a29 100644 --- a/Content.Client/Sandbox/SandboxManager.cs +++ b/Content.Client/Sandbox/SandboxManager.cs @@ -76,7 +76,7 @@ namespace Content.Client.Sandbox ShowMarkersButton = new Button { Text = Loc.GetString("Show Spawns"), ToggleMode = true }; vBox.AddChild(ShowMarkersButton); - ShowBbButton = new Button { Text = Loc.GetString("Show Bb"), ToggleMode = true }; + ShowBbButton = new Button { Text = Loc.GetString("Show BB"), ToggleMode = true }; vBox.AddChild(ShowBbButton); MachineLinkingButton = new Button { Text = Loc.GetString("Link machines"), ToggleMode = true };