Skip to content

Commit

Permalink
Update client.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinglykrab committed Dec 13, 2024
1 parent 922cbd1 commit 63d5f08
Showing 1 changed file with 1 addition and 26 deletions.
27 changes: 1 addition & 26 deletions zone/client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13124,16 +13124,7 @@ void Client::ShowZoneShardMenu()
}

auto outapp = new EQApplicationPacket(OP_PickZoneWindow, sizeof(PickZoneWindow_Struct));

LogError("Size of PZWS [{}]", sizeof(PickZoneWindow_Struct));

auto pzw = (PickZoneWindow_Struct*) outapp->pBuffer;

//std::hash<int64_t> hasher;

//int64 session_id = 0x11223344556677;

//LogError("session_id [{}]", session_id);
auto pzw = (PickZoneWindow_Struct*) outapp->pBuffer;

m_zoneshard_session_id = 0x11223344556677;

Expand All @@ -13156,14 +13147,6 @@ void Client::ShowZoneShardMenu()
p.player_count = static_cast<int>(e.player_count);
p.instance_id = e.instance_id;

LogError(
"index [{}] zone_id [{}] player_count [{}] instance_id [{}]",
index,
e.zone_id,
e.player_count,
e.instance_id
);

pzw->entries[index] = p;

m_zoneshard_request.emplace_back(p);
Expand All @@ -13178,14 +13161,6 @@ void Client::ShowZoneShardMenu()
p.player_count = 0;
p.instance_id = 0;

LogError(
"index [{}] zone_id [{}] player_count [{}] instance_id [{}]",
index,
0,
0,
0
);

pzw->entries[index] = p;

m_zoneshard_request.emplace_back(p);
Expand Down

0 comments on commit 63d5f08

Please sign in to comment.