<Dwarf>
How would I check if an user on the channel has a mode? E.g. +o or +v, I can get as far as m.channel.users but I don't know where to go from there
<dominikh>
that gives you a map of User=>Array of modes
<dominikh>
so m.channel.users[myUser].include?("o") – but of course you can just do m.channel.opped?(myUser) in that case
<dominikh>
and #voiced? etc
<Dwarf>
Ah it needs an User object, I see
<Dwarf>
Sweet, thanks
<Dwarf>
Is there a way to disable the ban list/channel mode checking after joining a channel?
<dominikh>
no, why?
iamayam has quit [Ping timeout: 276 seconds]
iamayam has joined #cinch
<Dwarf>
It's rather slow when joining a lot of channels at first
<dominikh>
so don't restart the bot so often ;)
<dominikh>
in the long run, this is more efficient than doing those things on demand
<Dwarf>
I suppose so
<Dwarf>
I wish there was an event fired at the end tho, altho I guess I could hook the end of /names