mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-22 12:18:27 +00:00
[Dynamic Zones] Rename dynamic zone structs (#1327)
* Rename dz member id field The name of the struct is enough to make this implicit * Rename dz member enum and struct Rename ExpeditionMember to DynamicZoneMember Rename ExpeditionMemberStatus to DynamicZoneMemberStatus * Rename dz window packet structs This makes it more clear the window may be used by any dynamic zone system not just expeditions (live missions fill the window when player doesn't have an active expedition). * Rename dz window packet fields
This commit is contained in:
@@ -221,7 +221,7 @@ bool ExpeditionRequest::CheckMembersForConflicts(const std::vector<std::string>&
|
||||
return true;
|
||||
}
|
||||
|
||||
m_members.emplace_back(character.id, character.name, ExpeditionMemberStatus::Online);
|
||||
m_members.emplace_back(character.id, character.name, DynamicZoneMemberStatus::Online);
|
||||
character_ids.emplace_back(character.id);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user