in reply to Re^2: getting client mode with Net::IRC
in thread getting client mode with Net::IRC

+o is not a user mode change but it is a mode change that triggers the mode handler if you have one.

  • Comment on Re^3: getting client mode with Net::IRC

Replies are listed 'Best First'.
Re^4: getting client mode with Net::IRC
by agaffney (Beadle) on Dec 31, 2004 at 17:12 UTC
    Ah, ok. The docs made it seems like the 'mode' handler was only for channel mode changes. Using 'mode' instead of 'umode' does exactly what I want it to do. Thanks.