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());