bunches of updates:

find bots in source engine
add altaddress
pass address to query object output
This commit is contained in:
Michael Morrison 2013-09-09 23:50:23 -05:00
parent f543b301dd
commit 0d1577fa35
3 changed files with 27 additions and 2 deletions

View file

@ -62,6 +62,7 @@ module.exports = Class.extend(EventEmitter,{
state.query = {};
if('host' in this.options) state.query.host = this.options.host;
if('address' in this.options) state.query.address = this.options.address;
if('port' in this.options) state.query.port = this.options.port;
state.query.type = this.type;
if('pretty' in this) state.query.pretty = this.pretty;