From 299e964e2b8df4512cddc7f7cedaa0132ecc8d06 Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Sat, 15 May 2021 11:09:32 -0400 Subject: [PATCH] update changelog --- src/Constants.ts | 4 ++++ src/Terminal.jsx | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Constants.ts b/src/Constants.ts index c110f6997..73e974fd7 100644 --- a/src/Constants.ts +++ b/src/Constants.ts @@ -231,6 +231,10 @@ export const CONSTANTS: IMap = { v0.51.9 - 2021-05-07 untitled yet ------- + Alias + * several commands can be included in 1 alias. Recursive alias now work to + a depth of 10. + Offline * Offline money gain has been reworked (it is more generous) diff --git a/src/Terminal.jsx b/src/Terminal.jsx index add64e19d..066a8cc32 100644 --- a/src/Terminal.jsx +++ b/src/Terminal.jsx @@ -630,7 +630,6 @@ let Terminal = { .map(substituteAliases) .map(c => c.match(/(?:'[^']*'|"[^"]*"|[^;"])*/g)) .flat(); - console.log(commands); for (let i = 0; i < commands.length; i++) { if(commands[i].match(/^\s*$/)) { continue; } // Don't run commands that only have whitespace Terminal.executeCommand(commands[i].trim());