mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
mass replaced all methods to pascal case
This commit is contained in:
@@ -13,7 +13,7 @@ namespace FFXIVClassic_Map_Server.packets.send.list
|
||||
public const ushort OPCODE = 0x017C;
|
||||
public const uint PACKET_SIZE = 0x98;
|
||||
|
||||
public static SubPacket buildPacket(uint playerActorID, uint locationCode, ulong sequenceId, ulong listId, uint listTypeId, int numEntries)
|
||||
public static SubPacket BuildPacket(uint playerActorID, uint locationCode, ulong sequenceId, ulong listId, uint listTypeId, int numEntries)
|
||||
{
|
||||
byte[] data = new byte[PACKET_SIZE - 0x20];
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace FFXIVClassic_Map_Server.packets.send.list
|
||||
binWriter.Write((UInt64)0);
|
||||
binWriter.Write((UInt64)listId);
|
||||
|
||||
//This seems to change depending on what the list is for
|
||||
//This seems to Change depending on what the list is for
|
||||
binWriter.Write((UInt32)listTypeId);
|
||||
binWriter.Seek(0x40, SeekOrigin.Begin);
|
||||
|
||||
|
Reference in New Issue
Block a user