diff --git a/source/dnetd/dconnection.d b/source/dnetd/dconnection.d index fcafe7a..b38cd2f 100644 --- a/source/dnetd/dconnection.d +++ b/source/dnetd/dconnection.d @@ -165,15 +165,15 @@ public class DConnection : Thread /* If `link` command (requires: unauthed) */ else if(commandByte == 1 && !hasAuthed) { - + /* TODO: Implement me later */ } - /* */ + /* If `register` command (requires: unauthed) */ else if(commandByte == 2 && !hasAuthed) { } /* If `join` command (requires: authed) */ - else if(commandByte == 3 && !hasAuthed) + else if(commandByte == 3 && hasAuthed) { /* Get the channel names */ string channelList = cast(string)message.data[1..message.data.length];