You can move the block game window now.
This commit is contained in:
parent
1a7fae14db
commit
0475142969
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue