mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-10 06:24:38 +02:00
Minor edits to the previous commit.
This commit is contained in:
parent
2195b0b7dc
commit
e96cc0c758
3 changed files with 9 additions and 8 deletions
|
@ -7,7 +7,7 @@ namespace FFXIVClassic_Map_Server.packets.receive
|
|||
{
|
||||
public bool invalidPacket = false;
|
||||
|
||||
public uint achievementID;
|
||||
public uint achievementId;
|
||||
public uint responseType;
|
||||
|
||||
public AchievementProgressRequestPacket(byte[] data)
|
||||
|
@ -18,9 +18,8 @@ namespace FFXIVClassic_Map_Server.packets.receive
|
|||
{
|
||||
try
|
||||
{
|
||||
achievementID = binReader.ReadUInt32();
|
||||
achievementId = binReader.ReadUInt32();
|
||||
responseType = binReader.ReadUInt32();
|
||||
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue