1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-06 17:41:04 +00:00

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 b0be7ab61e
commit 093e621643
No known key found for this signature in database
GPG key ID: EFAA458E8C153987
2 changed files with 2 additions and 2 deletions

View file

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

View file

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