PrintPacket cleanup
This commit is contained in:
parent
4e077ed3d8
commit
7869c2abcb
@ -486,8 +486,6 @@ void Trade::SendTradePacket() {
|
||||
packet->setDataByName("their_gold", gold);
|
||||
packet->setDataByName("their_plat", plat);
|
||||
|
||||
LogWrite(PLAYER__ERROR, 0, "Trade", "packet sent");
|
||||
packet->PrintPacket();
|
||||
client->QueuePacket(packet->serialize());
|
||||
safe_delete(packet);
|
||||
}
|
||||
@ -557,8 +555,6 @@ void Trade::SendTradePacket() {
|
||||
packet2->setDataByName("their_gold", gold);
|
||||
packet2->setDataByName("their_plat", plat);
|
||||
|
||||
LogWrite(PLAYER__ERROR, 0, "Trade", "packet sent #2");
|
||||
packet2->PrintPacket();
|
||||
client->QueuePacket(packet2->serialize());
|
||||
safe_delete(packet2);
|
||||
}
|
||||
|
@ -417,7 +417,6 @@ void ClientPacketFunctions::SendCreateFromRecipe(Client* client, int32 recipeID)
|
||||
|
||||
packet->setDataByName("recipe_id", recipeID);
|
||||
|
||||
packet->PrintPacket();
|
||||
EQ2Packet* outapp = packet->serialize();
|
||||
//DumpPacket(outapp);
|
||||
// Send the packet
|
||||
@ -586,7 +585,6 @@ void ClientPacketFunctions::SendItemCreationUI(Client* client, Recipe* recipe) {
|
||||
}
|
||||
|
||||
|
||||
packet->PrintPacket();
|
||||
EQ2Packet* outapp = packet->serialize();
|
||||
//DumpPacket(outapp);
|
||||
client->QueuePacket(outapp);
|
||||
|
@ -2514,8 +2514,6 @@ int32 WorldDatabase::SaveCharacter(PacketStruct* create, int32 loginID){
|
||||
class_id = 0; //Classic Server Only
|
||||
}
|
||||
|
||||
create->PrintPacket();
|
||||
|
||||
int8 gender_id = create->getType_int8_ByName("gender");
|
||||
sint16 auto_admin_status = 0;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user