mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 04:37:00 +00:00
Fixed SMSG_TRANSFER_ABORT opcode
This commit is contained in:
parent
233e5eac6f
commit
002a2fc5fc
7 changed files with 33 additions and 23 deletions
|
|
@ -148,9 +148,9 @@ bool ChatHandler::HandleSendOpcodeCommand(const char* args)
|
|||
|
||||
if(type == "uint8")
|
||||
{
|
||||
uint8 val1;
|
||||
uint16 val1;
|
||||
ifs >> val1;
|
||||
data << val1;
|
||||
data << uint8(val1);
|
||||
}
|
||||
else if(type == "uint16")
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue