mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-30 12:57:06 +02:00
fix infiltration keybinding
This commit is contained in:
@@ -4,7 +4,7 @@ export function random(min: number, max: number): number {
|
||||
return Math.random() * (max - min) + min;
|
||||
}
|
||||
|
||||
export function getArrow(event: React.KeyboardEvent<HTMLElement>): string {
|
||||
export function getArrow(event: KeyboardEvent): string {
|
||||
switch (event.keyCode) {
|
||||
case 38:
|
||||
case 87:
|
||||
|
||||
Reference in New Issue
Block a user