mirror of
https://github.com/tribufu/node-gamedig
synced 2026-06-01 09:42:41 +00:00
fix(protocols/minetest): rename ip to address (#678)
* Update minetest protocol Minetest changed property name in list * changelog
This commit is contained in:
parent
7ba1bc9e67
commit
f0c3b76bc5
2 changed files with 2 additions and 1 deletions
|
|
@ -4,6 +4,7 @@
|
||||||
* Docs: Arma Reforger query setup note (#670, thanks @xCausxn)
|
* Docs: Arma Reforger query setup note (#670, thanks @xCausxn)
|
||||||
* Fix: Grand Theft Auto V - FiveM wrap the players query in a try block as it doesn't provide the data by default anymore (#674, thanks @xCausxn)
|
* Fix: Grand Theft Auto V - FiveM wrap the players query in a try block as it doesn't provide the data by default anymore (#674, thanks @xCausxn)
|
||||||
* Docs: Counter-Strike 2 does not provide players names, note this and a plugin workaround (#675).
|
* Docs: Counter-Strike 2 does not provide players names, note this and a plugin workaround (#675).
|
||||||
|
* Fix: Minetest - server filtering replace missing field ip with address (By @hjri #678)
|
||||||
|
|
||||||
## 5.2.0
|
## 5.2.0
|
||||||
* Fix: Palworld not respecting query output players schema (#666)
|
* Fix: Palworld not respecting query output players schema (#666)
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ export default class minetest extends Core {
|
||||||
|
|
||||||
const serverInfo = servers.list.find(
|
const serverInfo = servers.list.find(
|
||||||
(server) =>
|
(server) =>
|
||||||
server.ip === this.options.address && server.port === this.options.port
|
server.address === this.options.address && server.port === this.options.port
|
||||||
)
|
)
|
||||||
|
|
||||||
if (serverInfo == null) {
|
if (serverInfo == null) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue