mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-04-10 12:21:33 +02:00
world daemon can now be backdoored
This commit is contained in:
@ -563,7 +563,15 @@ let Terminal = {
|
|||||||
|
|
||||||
finishBackdoor: function(cancelled = false) {
|
finishBackdoor: function(cancelled = false) {
|
||||||
if(!cancelled){
|
if(!cancelled){
|
||||||
let server = Player.getCurrentServer();
|
const server = Player.getCurrentServer();
|
||||||
|
if (SpecialServerIps[SpecialServerNames.WorldDaemon] &&
|
||||||
|
SpecialServerIps[SpecialServerNames.WorldDaemon] == server.ip) {
|
||||||
|
if (Player.bitNodeN == null) {
|
||||||
|
Player.bitNodeN = 1;
|
||||||
|
}
|
||||||
|
hackWorldDaemon(Player.bitNodeN);
|
||||||
|
return;
|
||||||
|
}
|
||||||
server.backdoorInstalled = true;
|
server.backdoorInstalled = true;
|
||||||
postElement(<>Backdoor successful!</>);
|
postElement(<>Backdoor successful!</>);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user