* fixed problem with CHAT_MSG_WHISPER_INFORM in chatAI. thx cobalt for pointing out the problem!
* reconnect also if realm server gives unknown answer in AuthResponse * deleted old linux binary
This commit is contained in:
parent
342bce125e
commit
e52420ae52
Binary file not shown.
@ -53,7 +53,7 @@ if ?{equal,${@myguid} ${@2}}
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
// filter out CHAT_MSG_WHISPER_INFORM ("whisper to ... : blah blah")
|
// filter out CHAT_MSG_WHISPER_INFORM ("whisper to ... : blah blah")
|
||||||
if ?{equal,${@0} 7}
|
if ?{equal,${@0} 8}
|
||||||
return false
|
return false
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|||||||
@ -524,14 +524,17 @@ void WorldSession::_HandleAuthResponseOpcode(WorldPacket& recvPacket)
|
|||||||
{
|
{
|
||||||
uint8 errcode;
|
uint8 errcode;
|
||||||
recvPacket >> errcode;
|
recvPacket >> errcode;
|
||||||
if(errcode==0xC){
|
if(errcode == 0xC)
|
||||||
|
{
|
||||||
logdetail("World Authentication successful, preparing for char list request...");
|
logdetail("World Authentication successful, preparing for char list request...");
|
||||||
WorldPacket pkt;
|
WorldPacket pkt;
|
||||||
pkt.SetOpcode(CMSG_CHAR_ENUM);
|
pkt.SetOpcode(CMSG_CHAR_ENUM);
|
||||||
SendWorldPacket(pkt);
|
SendWorldPacket(pkt);
|
||||||
} else {
|
}
|
||||||
logcritical("World Authentication failed, errcode=0x%X",(unsigned char)errcode);
|
else
|
||||||
GetInstance()->SetError();
|
{
|
||||||
|
logerror("World Authentication failed, errcode=0x%X",(unsigned char)errcode);
|
||||||
|
SetMustDie();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user