mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-14 07:51:12 +01:00
20 lines
605 B
JavaScript
20 lines
605 B
JavaScript
const Gamespy3 = require('./gamespy3');
|
|
|
|
// supposedly, gamespy3 is the "official" query protocol for jcmp,
|
|
// but it's broken (requires useOnlySingleSplit), and may not include some player names
|
|
class Jc2mp extends Gamespy3 {
|
|
constructor() {
|
|
super();
|
|
this.useOnlySingleSplit = true;
|
|
this.isJc2mp = true;
|
|
this.encoding = 'utf8';
|
|
}
|
|
async run(state) {
|
|
await super.run(state);
|
|
if(!state.players.length && parseInt(state.raw.numplayers)) {
|
|
state.players.setNum(parseInt(state.raw.numplayers));
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = Jc2mp;
|