Merge pull request #148 from xCausxn/feat/squad

Add check for Password_b on Squad Servers to correct password field.
This commit is contained in:
Michael Morrison 2020-01-15 16:14:46 -06:00 committed by GitHub
commit 7c151c771e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 1 deletions

16
protocols/squad.js Normal file
View file

@ -0,0 +1,16 @@
const Valve = require('./valve');
class Squad extends Valve {
constructor() {
super();
}
async cleanup(state) {
await super.cleanup(state);
if (state.raw.rules != null && state.raw.rules.Password_b === "true") {
state.password = true;
}
}
}
module.exports = Squad;