split hacknet node from server in name, with SF9 (#327)

This commit is contained in:
Tyasuh
2023-01-16 15:59:33 -05:00
committed by GitHub
parent 80061b1f81
commit ac8ea6b5ef
3 changed files with 4 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ export function purchaseHacknet(): number {
}
// Auto generate a name for the Node
const name = "hacknet-node-" + numOwned;
const name = hasHacknetServers() ? `hacknet-server-${numOwned}` : `hacknet-node-${numOwned}`;
const node = new HacknetNode(name, Player.mults.hacknet_node_money);
Player.loseMoney(cost, "hacknet_expenses");