16 lines
398 B
JavaScript
16 lines
398 B
JavaScript
/** @param {import(".").NS } ns */
|
|
// import { EXCLUDE_SERVERS } from "./constants.js";
|
|
|
|
export const EXCLUDE_SERVERS = ['home'];
|
|
for (let index = 0; index < 25; index++) {
|
|
EXCLUDE_SERVERS.push(`home-${index}`);
|
|
}
|
|
EXCLUDE_SERVERS.push('CSEC');
|
|
EXCLUDE_SERVERS.push('avmnite-02h');
|
|
EXCLUDE_SERVERS.push('I.I.I.I');
|
|
|
|
const COMPLETED_FACTIONS = [
|
|
'CyberSec',
|
|
'Netburners',
|
|
'NiteSec'
|
|
]; |