mirror of
https://github.com/minetest/minetest.git
synced 2024-11-09 01:03:46 +01:00
Fix wrong channel type in Client/Server CommandFactories
This is a u8 not a u16
This commit is contained in:
parent
b0be7ab61e
commit
093e621643
@ -41,7 +41,7 @@ struct ToClientCommandHandler
|
||||
struct ServerCommandFactory
|
||||
{
|
||||
const char* name;
|
||||
u16 channel;
|
||||
u8 channel;
|
||||
bool reliable;
|
||||
};
|
||||
|
||||
|
@ -41,7 +41,7 @@ struct ToServerCommandHandler
|
||||
struct ClientCommandFactory
|
||||
{
|
||||
const char* name;
|
||||
u16 channel;
|
||||
u8 channel;
|
||||
bool reliable;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user