mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 02:03:58 +01:00
Merge pull request #1422 from danielyxie/dev
fix bug with hacknet servers and grow
This commit is contained in:
commit
3891d0fae1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -836,9 +836,8 @@ function NetscriptFunctions(workerScript: WorkerScript): NS {
|
||||
}
|
||||
|
||||
const host = getServer(workerScript.serverIp);
|
||||
if (!(host instanceof Server)) {
|
||||
workerScript.log("grow", "Cannot be executed on this server.");
|
||||
return false;
|
||||
if (host === null) {
|
||||
throw new Error("Workerscript host is null");
|
||||
}
|
||||
|
||||
// No root access or skill level too low
|
||||
|
Loading…
Reference in New Issue
Block a user