From 3293dc44599b1da75d6e41b414870aafd6b18d84 Mon Sep 17 00:00:00 2001 From: Exp Date: Sun, 16 Aug 2020 20:54:33 +0200 Subject: [PATCH] -Move pointing to common (#1718) -Remove some duplicate keyfunctions --- Content.Client/Input/ContentContexts.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Content.Client/Input/ContentContexts.cs b/Content.Client/Input/ContentContexts.cs index 1250627a4f..89ddd64268 100644 --- a/Content.Client/Input/ContentContexts.cs +++ b/Content.Client/Input/ContentContexts.cs @@ -19,6 +19,7 @@ namespace Content.Client.Input common.AddFunction(ContentKeyFunctions.OpenTutorial); common.AddFunction(ContentKeyFunctions.TakeScreenshot); common.AddFunction(ContentKeyFunctions.TakeScreenshotNoUI); + common.AddFunction(ContentKeyFunctions.Point); var human = contexts.GetContext("human"); human.AddFunction(ContentKeyFunctions.SwapHands); @@ -37,9 +38,6 @@ namespace Content.Client.Input human.AddFunction(ContentKeyFunctions.MouseMiddle); human.AddFunction(ContentKeyFunctions.ToggleCombatMode); human.AddFunction(ContentKeyFunctions.WideAttack); - human.AddFunction(ContentKeyFunctions.Point); - human.AddFunction(ContentKeyFunctions.TryPullObject); - human.AddFunction(ContentKeyFunctions.MovePulledObject); var ghost = contexts.New("ghost", "common"); ghost.AddFunction(EngineKeyFunctions.MoveUp);