mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-23 08:03:48 +01:00
Merge pull request #2872 from SagePtr/getserver-hasownproperty
Add hasOwnProperty check to GetServer
This commit is contained in:
commit
15fae213ab
@ -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