From 215885a43643ad1597534650d08f2d50ff98566b Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 6 Jul 2019 23:07:13 +0200 Subject: [PATCH] Disable combat mode. --- Content.Client/Input/ContentContexts.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Client/Input/ContentContexts.cs b/Content.Client/Input/ContentContexts.cs index 0afb8b0767..98f3fe1ee1 100644 --- a/Content.Client/Input/ContentContexts.cs +++ b/Content.Client/Input/ContentContexts.cs @@ -24,7 +24,8 @@ namespace Content.Client.Input human.AddFunction(ContentKeyFunctions.ActivateItemInWorld); human.AddFunction(ContentKeyFunctions.ThrowItemInHand); human.AddFunction(ContentKeyFunctions.OpenContextMenu); - human.AddFunction(ContentKeyFunctions.ToggleCombatMode); + // Disabled until there is feedback, so hitting tab doesn't suddenly break interaction. + // human.AddFunction(ContentKeyFunctions.ToggleCombatMode); var ghost = contexts.New("ghost", "common"); ghost.AddFunction(EngineKeyFunctions.MoveUp);