diff options
Diffstat (limited to 'modules/protocol/plexus.cpp')
-rw-r--r-- | modules/protocol/plexus.cpp | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/modules/protocol/plexus.cpp b/modules/protocol/plexus.cpp index 5743ef50e..a36f7f2c2 100644 --- a/modules/protocol/plexus.cpp +++ b/modules/protocol/plexus.cpp @@ -383,35 +383,39 @@ class ProtoPlexus : public Module , message_tmode(this) , message_uid(this) - , sender_akill(this) - , sender_akill_del(this) - , sender_channel(this) - , sender_global_notice(this) - , sender_global_privmsg(this) , sender_invite(this) - , sender_join(this) , sender_kick(this) , sender_svskill(this) - , sender_login(this) - , sender_logout(this) , sender_mode_chan(this) - , sender_mode_user(this) , sender_nickchange(this) - , sender_nickintroduction(this) - , sender_noop(this) - , sender_sasl(this) , sender_notice(this) , sender_part(this) , sender_ping(this) , sender_pong(this) , sender_privmsg(this) , sender_quit(this) + , sender_squit(this) + + , sender_akill(this) + , sender_akill_del(this) + , sender_channel(this) + , sender_global_notice(this) + , sender_global_privmsg(this) + , sender_join(this) , sender_server(this) , sender_sqline(this) , sender_sqline_del(this) - , sender_squit(this) , sender_svshold(this) , sender_svsholddel(this) + + , sender_login(this) + , sender_logout(this) + , sender_wallops(this) + + , sender_mode_user(this) + , sender_nickintroduction(this) + , sender_noop(this) + , sender_sasl(this) , sender_svsjoin(this) , sender_svslogin(this) , sender_svsnick(this) @@ -419,7 +423,6 @@ class ProtoPlexus : public Module , sender_topic(this) , sender_vhost_del(this) , sender_vhost_set(this) - , sender_wallops(this) { IRCD = &ircd_proto; } |