mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Party leave/disband done.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user