diff --git a/source/dnetd/dchannel.d b/source/dnetd/dchannel.d index a85b3e1..9c472f4 100644 --- a/source/dnetd/dchannel.d +++ b/source/dnetd/dchannel.d @@ -197,7 +197,10 @@ public class DChannel protocolData ~= [0]; /* Set the channel notificaiton type to `member leave` */ - protocolData ~= cast(byte[])left.getUsername(); + + /* LeaveInfo: , */ + string leaveInfo = name~","~left.getUsername(); + protocolData ~= cast(byte[])leaveInfo; /* Write the notification */ member.writeSocket(0, protocolData);