From a0b3fe7b46a08dc37dcdcfe7d1e5c09a411cb1e4 Mon Sep 17 00:00:00 2001 From: Blue <15182031+BlueTheKing@users.noreply.github.com> Date: Wed, 23 May 2018 21:25:55 +0200 Subject: [PATCH] Locky typo fixed "loxky" to "locky" --- Barotrauma/BarotraumaShared/Source/DebugConsole.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Barotrauma/BarotraumaShared/Source/DebugConsole.cs b/Barotrauma/BarotraumaShared/Source/DebugConsole.cs index f84fa55e1..3a9a9a714 100644 --- a/Barotrauma/BarotraumaShared/Source/DebugConsole.cs +++ b/Barotrauma/BarotraumaShared/Source/DebugConsole.cs @@ -1216,7 +1216,7 @@ namespace Barotrauma Submarine.LockX = !Submarine.LockX; }, null, null)); - commands.Add(new Command("locky", "loxky: Lock vertical movement of the main submarine.", (string[] args) => + commands.Add(new Command("locky", "locky: Lock vertical movement of the main submarine.", (string[] args) => { Submarine.LockY = !Submarine.LockY; }, null, null));