mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Undid change that broke parties
This commit is contained in:
parent
8de606051a
commit
d23a84d6cf
@ -1707,22 +1707,20 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||||||
|
|
||||||
Party partyGroup = (Party) currentParty;
|
Party partyGroup = (Party) currentParty;
|
||||||
|
|
||||||
partyGroup.RemoveMember(actorId);
|
for (int i = 0; i < partyGroup.members.Count; i++)
|
||||||
|
{
|
||||||
//for (int i = 0; i < partyGroup.members.Count; i++)
|
if (partyGroup.members[i] == actorId)
|
||||||
//{
|
{
|
||||||
// if (partyGroup.members[i] == actorId)
|
partyGroup.members.RemoveAt(i);
|
||||||
// {
|
break;
|
||||||
// partyGroup.members.RemoveAt(i);
|
}
|
||||||
// break;
|
}
|
||||||
// }
|
|
||||||
//}
|
|
||||||
|
|
||||||
//currentParty.members.Remove(this);
|
//currentParty.members.Remove(this);
|
||||||
if (partyGroup.members.Count == 0)
|
if (partyGroup.members.Count == 0)
|
||||||
Server.GetWorldManager().NoMembersInParty((Party)currentParty);
|
Server.GetWorldManager().NoMembersInParty((Party)currentParty);
|
||||||
|
|
||||||
//currentParty = new Party(0, actorId);
|
currentParty = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void IssueChocobo(byte appearanceId, string nameResponse)
|
public void IssueChocobo(byte appearanceId, string nameResponse)
|
||||||
|
Loading…
Reference in New Issue
Block a user