Enable state tracking for nicks and channels
masterGoIRC can automatically track the state of all nicks in the channels the client is present in. This feature is disabled by default to save resources.
To enable it, call EnableStateTracking(). To disable it, call DisableStateTracking().
Warning: Do not enable or disable state tracking while already connected to an IRC server, as this will likely result in an inconsistent state and produce warnings to STDERR.
c.EnableStateTracking()
// ... later
c.DisableStateTracking()