aboutsummaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
Diffstat (limited to 'protocols')
-rw-r--r--protocols/inspircd2.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/protocols/inspircd2.c b/protocols/inspircd2.c
index 688fb02..c8d944c 100644
--- a/protocols/inspircd2.c
+++ b/protocols/inspircd2.c
@@ -872,6 +872,14 @@ void inspircd2_protocol_introduce_user_to(size_t net, void *handle, struct user_
networks[net].send(handle, user->fullname);
networks[net].send(handle, STRING("\n"));
+ if (user->oper_type.len != 0) {
+ networks[net].send(handle, STRING(":"));
+ networks[net].send(handle, user->uid);
+ networks[net].send(handle, STRING(" OPERTYPE :"));
+ networks[net].send(handle, user->oper_type);
+ networks[net].send(handle, STRING("\n"));
+ }
+
if (join_channels) {
for (size_t i = 0; i < user->channel_list.len; i++) {
struct channel_info *channel = user->channel_list.array[i].ptr;