Skip to content

Commit

Permalink
npc summon fix
Browse files Browse the repository at this point in the history
npc summon fix
  • Loading branch information
shalzuth committed Jul 22, 2022
1 parent 4cd0b14 commit 1302d93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LostArkLogger/Packets/Steam/PKTNewNpcSummon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ public partial class PKTNewNpcSummon
public void SteamDecode(BitReader reader)
{
npcStruct = reader.Read<NpcStruct>();
bytearray_1 = reader.ReadBytes(6);
bytearray_1 = reader.ReadBytes(9);
OwnerId = reader.ReadUInt64();
bytearray_0 = reader.ReadBytes(25);
bytearray_0 = reader.ReadBytes(22);
b_0 = reader.ReadByte();
}
}
Expand Down

0 comments on commit 1302d93

Please sign in to comment.