mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-03 13:01:04 +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);
|
|
}
|
|
});
|