mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-11 06:54:43 +02:00
Added some new work parameters. Fixed GC Packet (wrong sized data). Connected player data packets to DB. Cleaned up login code.
This commit is contained in:
parent
2bf532a6db
commit
f7702bca13
16 changed files with 209 additions and 123 deletions
|
@ -20,11 +20,11 @@ namespace FFXIVClassic_Map_Server.packets.send.actor
|
|||
using (MemoryStream mem = new MemoryStream(data))
|
||||
{
|
||||
using (BinaryWriter binWriter = new BinaryWriter(mem))
|
||||
{
|
||||
binWriter.Write((UInt16)currentAllegiance);
|
||||
binWriter.Write((UInt16)rankLimsa);
|
||||
binWriter.Write((UInt16)rankGridania);
|
||||
binWriter.Write((UInt16)rankUldah);
|
||||
{
|
||||
binWriter.Write((Byte)currentAllegiance);
|
||||
binWriter.Write((Byte)rankLimsa);
|
||||
binWriter.Write((Byte)rankGridania);
|
||||
binWriter.Write((Byte)rankUldah);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue