1
0
mirror of https://github.com/deavminet/dnetd synced 2024-09-21 09:43:37 +02:00

Fixed command check

Added missing enums
This commit is contained in:
Tristan B. Kildaire 2020-10-20 09:29:02 +02:00
parent d0dbb51eef
commit 3970a35cd0

View File

@ -48,6 +48,15 @@ public class DConnection : Thread
STATUS,
CHAN_PROP,
SET_PROP,
/* User property commands */
GET_USER_PROPS,
GET_USER_PROP,
SET_USER_PROP,
DELETE_USER_PROP,
UNKNOWN
}
@ -701,7 +710,7 @@ public class DConnection : Thread
}
}
/* If `set_user_prop` (requires: authed, client) */
else if(command == Command.GET_USER_PROP && hasAuthed && connType == ConnectionType.CLIENT)
else if(command == Command.SET_USER_PROP && hasAuthed && connType == ConnectionType.CLIENT)
{
}