Compare commits

..

No commits in common. "525eceb5a27a9ae3f3873bf4354802288eb6ac2e" and "5a0c27637e1d2b450637df3909d84e9f6e3b9199" have entirely different histories.

2 changed files with 0 additions and 9 deletions

View File

@ -227,12 +227,6 @@ void PlayerbotHolder::HandleBotPackets(WorldSession* session)
{
OpcodeClient opcode = static_cast<OpcodeClient>(packet->GetOpcode());
ClientOpcodeHandler const* opHandle = opcodeTable[opcode];
if (!opHandle)
{
LOG_ERROR("playerbots", "Unhandled opcode {} queued for bot session {}. Packet dropped.", static_cast<uint32>(opcode), session->GetAccountId());
delete packet;
continue;
}
opHandle->Call(session, *packet);
delete packet;
}

View File

@ -178,9 +178,6 @@ uint32 TravelNodePath::getPrice()
TaxiPathEntry const* taxiPath = sTaxiPathStore.LookupEntry(pathObject);
if (!taxiPath)
return 0;
return taxiPath->price;
}