diff options
Diffstat (limited to 'modules/protocol/ratbox.cpp')
-rw-r--r-- | modules/protocol/ratbox.cpp | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/modules/protocol/ratbox.cpp b/modules/protocol/ratbox.cpp index fcfca05dd..4541419b7 100644 --- a/modules/protocol/ratbox.cpp +++ b/modules/protocol/ratbox.cpp @@ -357,33 +357,35 @@ class ProtoRatbox : 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_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_mode_user(this) , sender_server(this) , sender_sgline(this) , sender_sgline_del(this) + + , sender_login(this) + , sender_logout(this) + , sender_nickintroduction(this) , sender_sqline(this) , sender_sqline_del(this) - , sender_squit(this) , sender_svsnick(this) , sender_topic(this) , sender_wallops(this) |