From 921f31231c4b88a4176b6b349d5b2fccca2b25fa Mon Sep 17 00:00:00 2001 From: Test_User Date: Tue, 23 Jul 2024 23:16:27 -0400 Subject: Fix SERVER introductions --- protocols/inspircd3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'protocols') diff --git a/protocols/inspircd3.c b/protocols/inspircd3.c index bef4a80..466d3d2 100644 --- a/protocols/inspircd3.c +++ b/protocols/inspircd3.c @@ -1052,7 +1052,7 @@ void inspircd3_protocol_introduce_servers_to_inner(size_t net, void *handle, str networks[net].send(handle, source); networks[net].send(handle, STRING(" SERVER ")); networks[net].send(handle, target->name); - networks[net].send(handle, STRING(" * 0 ")); + networks[net].send(handle, STRING(" ")); networks[net].send(handle, target->sid); networks[net].send(handle, STRING(" :")); networks[net].send(handle, target->fullname); @@ -1081,7 +1081,7 @@ void inspircd3_protocol_introduce_servers_to(size_t net, void *handle) { networks[net].send(handle, SID); networks[net].send(handle, STRING(" SERVER ")); networks[net].send(handle, target->name); - networks[net].send(handle, STRING(" * 0 ")); + networks[net].send(handle, STRING(" ")); networks[net].send(handle, target->sid); networks[net].send(handle, STRING(" :")); networks[net].send(handle, target->fullname); -- cgit v1.2.3