mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-18 01:30:39 +01:00
Update beammp.js (#558)
Use resolved IP in case of hostname entered since serverinfo only returns IP
This commit is contained in:
parent
b0af081d36
commit
181a1b7644
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ export default class beammp extends Core {
|
|||
master.options = this.options
|
||||
const masterState = await master.runOnceSafe()
|
||||
const servers = masterState.raw.servers
|
||||
const server = servers.find(s => s.ip === this.options.host)
|
||||
const server = servers.find(s => s.ip === this.options.address)
|
||||
|
||||
if (!server) {
|
||||
throw new Error('Server not found in the master list')
|
||||
|
|
Loading…
Reference in a new issue