gamedig
Version:
Query for the status of any game server in Node.JS
14 lines (12 loc) • 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
}
}