mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-01 18:49:40 +00:00
[Server] Add permanent debug to ID_PLAYER_CELL_CHANGE and ID_CONTAINER
This commit is contained in:
parent
7917badedf
commit
0527690b88
1 changed files with 10 additions and 1 deletions
|
@ -182,6 +182,10 @@ void Networking::processPlayerPacket(RakNet::Packet *packet)
|
||||||
player->cell.getDescription().c_str());
|
player->cell.getDescription().c_str());
|
||||||
|
|
||||||
player->forEachLoaded([this](Player *pl, Player *other) {
|
player->forEachLoaded([this](Player *pl, Player *other) {
|
||||||
|
|
||||||
|
LOG_APPEND(Log::LOG_INFO, "- Started information exchange with %s",
|
||||||
|
other->npc.mName.c_str());
|
||||||
|
|
||||||
playerController->GetPacket(ID_PLAYER_DYNAMICSTATS)->Send(other, pl->guid);
|
playerController->GetPacket(ID_PLAYER_DYNAMICSTATS)->Send(other, pl->guid);
|
||||||
playerController->GetPacket(ID_PLAYER_ATTRIBUTE)->Send(other, pl->guid);
|
playerController->GetPacket(ID_PLAYER_ATTRIBUTE)->Send(other, pl->guid);
|
||||||
playerController->GetPacket(ID_PLAYER_POS)->Send(other, pl->guid);
|
playerController->GetPacket(ID_PLAYER_POS)->Send(other, pl->guid);
|
||||||
|
@ -195,7 +199,7 @@ void Networking::processPlayerPacket(RakNet::Packet *packet)
|
||||||
playerController->GetPacket(ID_PLAYER_EQUIPMENT)->Send(pl, other->guid);
|
playerController->GetPacket(ID_PLAYER_EQUIPMENT)->Send(pl, other->guid);
|
||||||
playerController->GetPacket(ID_PLAYER_DRAWSTATE)->Send(pl, other->guid);
|
playerController->GetPacket(ID_PLAYER_DRAWSTATE)->Send(pl, other->guid);
|
||||||
|
|
||||||
LOG_APPEND(Log::LOG_INFO, "- Exchanged information with %s",
|
LOG_APPEND(Log::LOG_INFO, "- Finished information exchange with %s",
|
||||||
other->npc.mName.c_str());
|
other->npc.mName.c_str());
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -203,6 +207,9 @@ void Networking::processPlayerPacket(RakNet::Packet *packet)
|
||||||
myPacket->Send(player, true); //send to other clients
|
myPacket->Send(player, true); //send to other clients
|
||||||
|
|
||||||
Script::Call<Script::CallbackIdentity("OnPlayerCellChange")>(player->getId());
|
Script::Call<Script::CallbackIdentity("OnPlayerCellChange")>(player->getId());
|
||||||
|
|
||||||
|
LOG_APPEND(Log::LOG_INFO, "- Finished processing ID_PLAYER_CELL_CHANGE",
|
||||||
|
player->cell.getDescription().c_str());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -623,6 +630,8 @@ void Networking::processWorldPacket(RakNet::Packet *packet)
|
||||||
player->getId(),
|
player->getId(),
|
||||||
baseEvent.cell.getDescription().c_str());
|
baseEvent.cell.getDescription().c_str());
|
||||||
|
|
||||||
|
LOG_APPEND(Log::LOG_INFO, "- Finished processing ID_CONTAINER");
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue