From ce029f461e16d5231a81877a7702684adac41cc8 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto Date: Wed, 23 Dec 2020 12:35:05 +0100 Subject: [PATCH] Do not ignore up in hotbar keybinds. --- Content.Client/GameObjects/EntitySystems/ActionsSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/GameObjects/EntitySystems/ActionsSystem.cs b/Content.Client/GameObjects/EntitySystems/ActionsSystem.cs index 4656b350a7..3a37dd009c 100644 --- a/Content.Client/GameObjects/EntitySystems/ActionsSystem.cs +++ b/Content.Client/GameObjects/EntitySystems/ActionsSystem.cs @@ -84,7 +84,7 @@ namespace Content.Client.GameObjects.EntitySystems actionsComponent.HandleHotbarKeybind(slot, args); return true; - }); + }, false); } private PointerInputCmdHandler HandleChangeHotbarKeybind(byte hotbar)