mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-22 18:46:06 +02:00
mass replaced all methods to pascal case
This commit is contained in:
parent
ed0a0a58f7
commit
24f55139dd
179 changed files with 1585 additions and 1585 deletions
|
@ -20,7 +20,7 @@ namespace FFXIVClassic_Lobby_Server.packets
|
|||
this.characterList = characterList;
|
||||
}
|
||||
|
||||
public List<SubPacket> buildPackets()
|
||||
public List<SubPacket> BuildPackets()
|
||||
{
|
||||
List<SubPacket> subPackets = new List<SubPacket>();
|
||||
|
||||
|
@ -34,7 +34,7 @@ namespace FFXIVClassic_Lobby_Server.packets
|
|||
|
||||
foreach (Character chara in characterList)
|
||||
{
|
||||
Appearance appearance = Database.getAppearance(chara.id);
|
||||
Appearance appearance = Database.GetAppearance(chara.id);
|
||||
|
||||
if (totalCount == 0 || characterCount % MAXPERPACKET == 0)
|
||||
{
|
||||
|
@ -53,7 +53,7 @@ namespace FFXIVClassic_Lobby_Server.packets
|
|||
binWriter.Seek(0x10 + (0x1D0 * characterCount), SeekOrigin.Begin);
|
||||
|
||||
//Write Entries
|
||||
World world = Database.getServer(chara.serverId);
|
||||
World world = Database.GetServer(chara.serverId);
|
||||
string worldname = world == null ? "Unknown" : world.name;
|
||||
|
||||
binWriter.Write((uint)0); //???
|
||||
|
@ -74,8 +74,8 @@ namespace FFXIVClassic_Lobby_Server.packets
|
|||
binWriter.Write(Encoding.ASCII.GetBytes(chara.name.PadRight(0x20, '\0'))); //Name
|
||||
binWriter.Write(Encoding.ASCII.GetBytes(worldname.PadRight(0xE, '\0'))); //World Name
|
||||
|
||||
binWriter.Write(CharaInfo.buildForCharaList(chara, appearance)); //Appearance Data
|
||||
//binWriter.Write(CharaInfo.debug()); //Appearance Data
|
||||
binWriter.Write(CharaInfo.BuildForCharaList(chara, appearance)); //Appearance Data
|
||||
//binWriter.Write(CharaInfo.Debug()); //Appearance Data
|
||||
|
||||
characterCount++;
|
||||
totalCount++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue