IRCPluginState.updates

Bitfield of in what way the plugin state was altered during postprocessing or event handler execution.

struct IRCPluginState
Update updates;

Examples

if (state.updates & IRCPluginState.Update.bot)
{
    // state.bot was marked as updated
    state.updates |= IRCPluginState.Update.server;
    // state.server now marked as updated
}