From a1af0318d83c76d717bc5fd1daf5e5613cb3f432 Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Thu, 16 Dec 2021 12:20:04 -0500 Subject: [PATCH] minor error message tweak --- src/Terminal/commands/runProgram.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Terminal/commands/runProgram.ts b/src/Terminal/commands/runProgram.ts index fca5646da..f9e17b2d8 100644 --- a/src/Terminal/commands/runProgram.ts +++ b/src/Terminal/commands/runProgram.ts @@ -20,8 +20,11 @@ export function runProgram( const programName = args[0] + ""; if (!player.hasProgram(programName)) { - terminal.error(`No such (exe, script, js, or ns) file! (Only programs that exist on your home computer or scripts on ${player.getCurrentServer().hostname - } can be run)`); + terminal.error( + `No such (exe, script, js, ns, or cct) file! (Only programs that exist on your home computer or scripts on ${ + player.getCurrentServer().hostname + } can be run)`, + ); return; }