minor error message tweak

This commit is contained in:
Olivier Gagnon 2021-12-16 12:20:04 -05:00
parent b05645a61c
commit a1af0318d8

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