mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-11 23:14:39 +02:00
Party leave/disband done.
This commit is contained in:
parent
7c29a850c4
commit
6ba1f968c3
7 changed files with 134 additions and 5 deletions
|
@ -38,7 +38,14 @@ namespace FFXIVClassic_World_Server
|
|||
if (mCurrentWorldGroupsReference.ContainsKey(groupId))
|
||||
mCurrentWorldGroupsReference.Remove(groupId);
|
||||
if (mPartyList.ContainsKey(groupId))
|
||||
{
|
||||
foreach (uint id in mPartyList[groupId].members)
|
||||
{
|
||||
if (mPlayerPartyLookup.ContainsKey(id))
|
||||
mPlayerPartyLookup.Remove(id);
|
||||
}
|
||||
mPartyList.Remove(groupId);
|
||||
}
|
||||
}
|
||||
|
||||
public bool AddToParty(ulong groupId, uint charaId)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue