mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-02-17 02:22:23 +01:00
Merge pull request #3228 from dowinter/fix_bladeburner_console#3215
Fix handling for UpArrow in bladeburner console #3215
This commit is contained in:
@ -89,7 +89,7 @@ export function Console(props: IProps): React.ReactElement {
|
||||
|
||||
const consoleHistory = props.bladeburner.consoleHistory;
|
||||
|
||||
if (event.key === KEY.S) {
|
||||
if (event.key === KEY.UPARROW) {
|
||||
// up
|
||||
let i = consoleHistoryIndex;
|
||||
const len = consoleHistory.length;
|
||||
|
Reference in New Issue
Block a user