* The user prefixes for channel owner/admin/op/voice etc. on this network
* @type Array
*/
- user_prefixes: ['~', '&', '@', '+'],
+ user_prefixes: [
+ {symbol: '~', mode: 'q'},
+ {symbol: '&', mode: 'a'},
+ {symbol: '@', mode: 'o'},
+ {symbol: '%', mode: 'h'},
+ {symbol: '+', mode: 'v'}
+ ],
/**
* List of nicks we are ignoring
// Options sent by the IRCd
this.options = Object.create(null);
+ this.options.PREFIX = [
+ {symbol: '~', mode: 'q'},
+ {symbol: '&', mode: 'a'},
+ {symbol: '@', mode: 'o'},
+ {symbol: '%', mode: 'h'},
+ {symbol: '+', mode: 'v'}
+ ];
+
this.cap = {requested: [], enabled: []};
// Is SASL supported on the IRCd