Skip to content

Commit

Permalink
6C 및 74 패킷 오프셋 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
devunt committed Oct 1, 2016
1 parent d895c3d commit d3c45d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions App/Network.Analyser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ private void HandleMessage(byte[] message)
}
else if (opcode == 0x006C)
{
var code = BitConverter.ToUInt16(data, 12);
var code = BitConverter.ToUInt16(data, 184);

var instance = Data.GetInstance(code);

Expand All @@ -261,7 +261,7 @@ private void HandleMessage(byte[] message)

for (int i = 0; i < 5; i++)
{
var code = BitConverter.ToUInt16(data, 192 + (i * 2));
var code = BitConverter.ToUInt16(data, 184 + (i * 2));
if (code == 0)
{
break;
Expand Down

0 comments on commit d3c45d5

Please sign in to comment.