fix(protocols/minetest): rename ip to address (#678)

* Update minetest protocol

Minetest changed property name in list

* changelog
This commit is contained in:
HJ 2025-02-26 22:14:56 +02:00 committed by GitHub
parent 7ba1bc9e67
commit f0c3b76bc5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -4,6 +4,7 @@
* 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)
* 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
* Fix: Palworld not respecting query output players schema (#666)

View file

@ -18,7 +18,7 @@ export default class minetest extends Core {
const serverInfo = servers.list.find(
(server) =>
server.ip === this.options.address && server.port === this.options.port
server.address === this.options.address && server.port === this.options.port
)
if (serverInfo == null) {