mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Fix spelling of NETMSG_AUTH_CHALLENGE
constant
This commit is contained in:
parent
25e01eb762
commit
e4b1db1b6d
|
@ -748,7 +748,7 @@ static inline bool RepackMsg(const CMsgPacker *pMsg, CPacker &Packer, bool Sixup
|
|||
MsgId += 1;
|
||||
else if(MsgId == NETMSG_RCON_LINE)
|
||||
MsgId = 13;
|
||||
else if(MsgId >= NETMSG_AUTH_CHALLANGE && MsgId <= NETMSG_AUTH_RESULT)
|
||||
else if(MsgId >= NETMSG_AUTH_CHALLENGE && MsgId <= NETMSG_AUTH_RESULT)
|
||||
MsgId += 4;
|
||||
else if(MsgId >= NETMSG_PING && MsgId <= NETMSG_ERROR)
|
||||
MsgId += 4;
|
||||
|
|
|
@ -47,7 +47,7 @@ enum
|
|||
NETMSG_RCON_AUTH_STATUS, // result of the authentication
|
||||
NETMSG_RCON_LINE, // line that should be printed to the remote console
|
||||
|
||||
NETMSG_AUTH_CHALLANGE, //
|
||||
NETMSG_AUTH_CHALLENGE, //
|
||||
NETMSG_AUTH_RESULT, //
|
||||
|
||||
// sent by client
|
||||
|
|
Loading…
Reference in a new issue