Fixed hexen 2 and heretic 2 (finally found some servers to test against)

This commit is contained in:
mmorrison 2017-08-09 04:36:38 -05:00
parent f63e5f8da6
commit 14aa56714f
2 changed files with 4 additions and 5 deletions

9
protocols/hexen2.js Normal file
View file

@ -0,0 +1,9 @@
class Hexen2 extends require('./quake1') {
constructor() {
super();
this.sendHeader = '\xFFstatus\x0a';
this.responseHeader = '\xffn';
}
}
module.exports = Hexen2;