mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-10 06:24:38 +02:00
Party sync is done. Finished kick/promote code. Client is now always at the top of pt list.
This commit is contained in:
parent
506bcbaf87
commit
2b10221a75
11 changed files with 77 additions and 25 deletions
|
@ -214,9 +214,10 @@ namespace FFXIVClassic_World_Server
|
|||
Party pt = mPartyManager.GetParty(session.sessionId);
|
||||
|
||||
|
||||
if (session.sessionId == 0x6c)
|
||||
if (session.sessionId == 156)
|
||||
{
|
||||
mPartyManager.AddToParty(pt.groupIndex, 156);
|
||||
mPartyManager.AddToParty(pt.groupIndex, 0x6c);
|
||||
mPartyManager.AddToParty(pt.groupIndex, 157);
|
||||
}
|
||||
|
||||
pt.SendGroupPackets(session);
|
||||
|
@ -226,7 +227,7 @@ namespace FFXIVClassic_World_Server
|
|||
foreach (Linkshell ls in linkshells)
|
||||
ls.SendGroupPackets(session);
|
||||
|
||||
mRelationGroupManager.CreateRelationGroup(157, session.sessionId, 40001).SendGroupPackets(session);
|
||||
mRelationGroupManager.CreateRelationGroup(157, session.sessionId, 10001).SendGroupPackets(session);
|
||||
}
|
||||
|
||||
private void SendMotD(Session session)
|
||||
|
@ -291,7 +292,7 @@ namespace FFXIVClassic_World_Server
|
|||
if (mCurrentWorldGroups.ContainsKey(groupId))
|
||||
{
|
||||
Group group = mCurrentWorldGroups[groupId];
|
||||
foreach (GroupMember member in group.BuildMemberList())
|
||||
foreach (GroupMember member in group.BuildMemberList(0))
|
||||
group.SendGroupPackets(mServer.GetSession(member.actorId));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue