You should be able to bind to arrow keys.

This commit is contained in:
UnknownShadow200 2015-11-03 11:10:33 +11:00
parent 88e2c86b62
commit 6389f8bf13

View File

@ -21,7 +21,6 @@ namespace ClassicalSharp {
bool IsReservedKey( Key key ) { bool IsReservedKey( Key key ) {
return key == Key.Escape || key == Key.F12 || key == Key.Slash || key == Key.BackSpace || return key == Key.Escape || key == Key.F12 || key == Key.Slash || key == Key.BackSpace ||
(key >= Key.Insert && key <= Key.End) || (key >= Key.Insert && key <= Key.End) ||
(key >= Key.Up && key <= Key.Right) || // chat screen movement
(key >= Key.Number0 && key <= Key.Number9); // block hotbar (key >= Key.Number0 && key <= Key.Number9); // block hotbar
} }