mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04: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:
@@ -43,9 +43,29 @@ namespace FFXIVClassic_World_Server
|
||||
}
|
||||
}
|
||||
|
||||
//Modifies the LS
|
||||
public bool ModifyLinkshell()
|
||||
//Modifies the LS master
|
||||
public bool ChangeLinkshellMaster(string name, uint newMaster)
|
||||
{
|
||||
foreach (Linkshell ls in mLinkshellList.Values)
|
||||
{
|
||||
if (ls.name.Equals(name))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
//Modifies the LS crest
|
||||
public bool ChangeLinkshellCrest(string name, ushort newCrestId)
|
||||
{
|
||||
foreach (Linkshell ls in mLinkshellList.Values)
|
||||
{
|
||||
if (ls.name.Equals(name))
|
||||
{
|
||||
return Database.ChangeLinkshellCrest(ls.dbId, newCrestId);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user