node-gamedig/protocols/jc2mp.js

19 lines
505 B
JavaScript
Raw Normal View History

2014-10-29 08:02:03 +01:00
// supposedly, gamespy3 is the "official" query protocol for jcmp,
// but it's broken (requires useOnlySingleSplit), and doesn't include player names
class Jc2mp extends require('./gamespy3') {
constructor() {
super();
2014-10-29 08:02:03 +01:00
this.useOnlySingleSplit = true;
}
finalizeState(state) {
super.finalizeState(state);
2014-10-29 08:02:03 +01:00
if(!state.players.length && parseInt(state.raw.numplayers)) {
for(let i = 0; i < parseInt(state.raw.numplayers); i++) {
2014-10-29 08:02:03 +01:00
state.players.push({});
}
}
}
}
module.exports = Jc2mp;