4.0.2 Fix counter strike 1.5

This commit is contained in:
Michael Morrison 2022-02-19 06:23:21 -06:00
parent 343e23c4ad
commit 07c7eca262
5 changed files with 69 additions and 48 deletions

10
protocols/goldsrc.js Normal file
View file

@ -0,0 +1,10 @@
const Valve = require('./valve');
class GoldSrc extends Valve {
constructor() {
super();
this.goldsrcInfo = true;
}
}
module.exports = GoldSrc;