From 047514296912c32a16017bc36d2f61f6cd6ebe60 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 10 Oct 2020 01:07:39 +0200 Subject: [PATCH] You can move the block game window now. --- Content.Client/Arcade/BlockGameMenu.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Content.Client/Arcade/BlockGameMenu.cs b/Content.Client/Arcade/BlockGameMenu.cs index 0434e3d2c6..7dc8776c9e 100644 --- a/Content.Client/Arcade/BlockGameMenu.cs +++ b/Content.Client/Arcade/BlockGameMenu.cs @@ -555,7 +555,9 @@ namespace Content.Client.Arcade protected override void KeyBindDown(GUIBoundKeyEventArgs args) { - if(!_isPlayer) return; + base.KeyBindDown(args); + + if(!_isPlayer || args.Handled) return; if (args.Function == ContentKeyFunctions.ArcadeLeft) { @@ -589,7 +591,9 @@ namespace Content.Client.Arcade protected override void KeyBindUp(GUIBoundKeyEventArgs args) { - if(!_isPlayer) return; + base.KeyBindUp(args); + + if(!_isPlayer || args.Handled) return; if (args.Function == ContentKeyFunctions.ArcadeLeft) {