mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-18 17:50:37 +01:00
12 lines
300 B
JavaScript
12 lines
300 B
JavaScript
|
module.exports = require('./protocols/unreal2').extend({
|
||
|
init: function() {
|
||
|
this._super();
|
||
|
this.options.port = 7708;
|
||
|
this.pretty = 'Killing Floor';
|
||
|
},
|
||
|
readExtraInfo: function(reader,state) {
|
||
|
state.raw.wavecurrent = reader.uint(4);
|
||
|
state.raw.wavetotal = reader.uint(4);
|
||
|
}
|
||
|
});
|