mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
* Add support for BROKE PROTOCOL, querying master server Plus support for master query through separate protocol * Define json response via schema, optional data validation with Ajv (commented out) * Fallback query from game data server listing (servers.json) * docs: update CHANGELOG and GAMES_LIST for Broke Protocol
13 lines
327 B
JavaScript
13 lines
327 B
JavaScript
import brokeprotocolmaster from './brokeprotocolmaster.js'
|
|
|
|
/**
|
|
* Implements the protocol for BROKE PROTOCOL, a Unity based game
|
|
* using a custom master server
|
|
*/
|
|
export default class brokeprotocol extends brokeprotocolmaster {
|
|
constructor () {
|
|
super()
|
|
this.doQuerySingle = true
|
|
this.requireToken = true
|
|
}
|
|
}
|