Fixed not correctly removing Group Containers when removing people (causing crash at char change)

ryzom/ui/improvements
Sit Melai 4 years ago
parent 47bf9ecbc8
commit 9d7f2af1a7

@ -804,7 +804,12 @@ void CPeopleList::removeAllPeoples()
{
_BaseContainer->removeAllContainers();
}
for (uint k = 0; k < _GroupContainers.size(); ++k)
{
_GroupContainers[k].second->removeAllContainers();
}
NLMISC::contReset(_Peoples);
NLMISC::contReset(_GroupContainers);
}
//==================================================================

Loading…
Cancel
Save