mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 21:44:35 +02:00
Implemented MotD. Groups are now sent from world server to client, and also initialized. Retainers finished and are also sent.
This commit is contained in:
parent
31446f37fa
commit
7036ef363d
18 changed files with 309 additions and 74 deletions
|
@ -36,10 +36,8 @@ namespace FFXIVClassic_World_Server
|
|||
ulong groupId = mWorldManager.GetGroupIndex();
|
||||
RetainerGroup retainerGroup = new RetainerGroup(groupId, charaId);
|
||||
|
||||
Dictionary<uint, RetainerGroupMember> members = Database.GetRetainers(charaId);
|
||||
if (members == null)
|
||||
return null;
|
||||
|
||||
List<RetainerGroupMember> members = Database.GetRetainers(charaId);
|
||||
|
||||
retainerGroup.members = members;
|
||||
mRetainerGroupList.Add(charaId, retainerGroup);
|
||||
mCurrentWorldGroupsReference.Add(groupId, retainerGroup);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue