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

@ -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) {