mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 14:57:44 +00:00
Show invited players in linkshell list aswell
This commit is contained in:
parent
b7ad7965a7
commit
2b8a3ba8a0
1 changed files with 2 additions and 0 deletions
|
@ -210,9 +210,11 @@ void Sapphire::Network::GameConnection::getCommonlistHandler( const Packets::FFX
|
|||
if( lsPtr )
|
||||
{
|
||||
auto& memberSet = lsPtr->getMemberIdList();
|
||||
auto& inviteSet = lsPtr->getInviteIdList();
|
||||
|
||||
std::vector< uint64_t > memberVec;
|
||||
std::copy( memberSet.begin(), memberSet.end(), std::back_inserter( memberVec ) );
|
||||
std::copy( inviteSet.begin(), inviteSet.end(), std::back_inserter( memberVec ) );
|
||||
|
||||
page = generateEntries( memberVec, offset, {} );
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue