diff --git a/source/dnetd/dchannel.d b/source/dnetd/dchannel.d index 9e6c7cc..a85b3e1 100644 --- a/source/dnetd/dchannel.d +++ b/source/dnetd/dchannel.d @@ -238,7 +238,10 @@ public class DChannel protocolData ~= [1]; /* Set the channel notificaiton type to `member join` */ - protocolData ~= cast(byte[])joined.getUsername(); + + /* JoinInfo: , */ + string joinInfo = name~","~joined.getUsername(); + protocolData ~= cast(byte[])joinInfo; /* Write the notification */ member.writeSocket(0, protocolData);