diff --git a/CHANGELOG.md b/CHANGELOG.md index c0eba61..69f746b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/protocols/minetest.js b/protocols/minetest.js index 97f27bc..80b7d4d 100644 --- a/protocols/minetest.js +++ b/protocols/minetest.js @@ -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) {