Minor edits to the previous commit.

This commit is contained in:
Filip Maj 2019-06-04 01:16:39 -04:00
parent 2195b0b7dc
commit e96cc0c758
3 changed files with 9 additions and 8 deletions

View file

@ -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)
{