Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: party hunt analyzer prices from leader #817

Merged
merged 1 commit into from
Jan 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/creatures/players/grouping/party.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ bool Party::passPartyLeadership(Player* player)
memberList.insert(memberList.begin(), oldLeader);

updateSharedExperience();
updateTrackerAnalyzer();

for (Player* member : memberList) {
member->sendPartyCreatureShield(oldLeader);
Expand Down
4 changes: 1 addition & 3 deletions src/utils/const.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ const uint32_t MAX_STATICWALK = 100;
static constexpr size_t NETWORKMESSAGE_PLAYERNAME_MAXLENGTH = 30;
static constexpr int32_t NETWORKMESSAGE_MAXSIZE = 65500;

// QT clients probably have bigger input buffer because of exiva options
// But for now we don't support exiva options
static constexpr int32_t INPUTMESSAGE_MAXSIZE = 2048;
static constexpr int32_t INPUTMESSAGE_MAXSIZE = 4096;

static constexpr int32_t CHANNEL_GUILD = 0x00;
static constexpr int32_t CHANNEL_PARTY = 0x01;
Expand Down