Fix wrong channel type in Client/Server CommandFactories

This is a u8 not a u16
This commit is contained in:
Loic Blot 2017-04-14 15:56:40 +02:00
parent 7f3139892c
commit add1c2e166
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ struct ToClientCommandHandler
struct ServerCommandFactory
{
const char* name;
u16 channel;
u8 channel;
bool reliable;
};

View File

@ -41,7 +41,7 @@ struct ToServerCommandHandler
struct ClientCommandFactory
{
const char* name;
u16 channel;
u8 channel;
bool reliable;
};