Skip to content

Commit

Permalink
Merge pull request #47 from Kimjunseo319/patch-1
Browse files Browse the repository at this point in the history
Change soulworker Magic bytes
  • Loading branch information
sawich authored Jan 16, 2021
2 parents 29b2ac1 + 4a739bc commit 3c6f0f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ow.Framework/IO/Network/Sync/PacketWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public PacketWriter(ClientOpcode opcode, ILogger logger) : base(new MemoryStream
logger.LogDebug($"Create packet: {opcode}");

/// Write SoulWorker magic bytes
Write((byte)0x02);
Write((byte)0x03);
Write((byte)0x00);

/// Write packet size (just reserve space, overwritten in GetBuffer)
Expand All @@ -262,4 +262,4 @@ internal byte[] GetBuffer()
}
}

// https://youtu.be/9MKouooyOnY
// https://youtu.be/9MKouooyOnY

0 comments on commit 3c6f0f7

Please sign in to comment.