You can move the block game window now.

This commit is contained in:
Pieter-Jan Briers 2020-10-10 01:07:39 +02:00
parent 1a7fae14db
commit 0475142969
No known key found for this signature in database
GPG Key ID: 132054DF433AE592
1 changed files with 6 additions and 2 deletions

View File

@ -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)
{