Fix handling for UpArrow in bladeburner console #3215
This commit is contained in:
hydroflame
2022-03-21 19:59:01 -04:00
committed by GitHub

View File

@ -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;