mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-30 03:23:48 +01:00
Add hasOwnProperty check to GetServer
This commit is contained in:
parent
9ddb1c4379
commit
4483c2bbce
@ -42,8 +42,11 @@ function GetServerByHostname(hostname: string): BaseServer | null {
|
|||||||
|
|
||||||
//Get server by IP or hostname. Returns null if invalid
|
//Get server by IP or hostname. Returns null if invalid
|
||||||
export function GetServer(s: string): BaseServer | null {
|
export function GetServer(s: string): BaseServer | null {
|
||||||
const server = AllServers[s];
|
if (AllServers.hasOwnProperty(s)) {
|
||||||
if (server) return server;
|
const server = AllServers[s];
|
||||||
|
if (server) return server;
|
||||||
|
}
|
||||||
|
|
||||||
if (!isValidIPAddress(s)) {
|
if (!isValidIPAddress(s)) {
|
||||||
return GetServerByHostname(s);
|
return GetServerByHostname(s);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user