diff --git a/source/dnetd/dconnection.d b/source/dnetd/dconnection.d index 11bc0c1..53a2556 100644 --- a/source/dnetd/dconnection.d +++ b/source/dnetd/dconnection.d @@ -274,6 +274,15 @@ public class DConnection : Thread { command = Command.STATUS; } + else if(commandByte == 14) + { + command = Command.CHAN_PROP; + } + else if(commandByte == 15) + { + command = Command.SET_PROP; + } + return command; }