Skip to content

Commit

Permalink
Merge branch 'master' into dotnet8
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-n committed Nov 16, 2023
2 parents 947051b + a9c8461 commit 2b08e9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/GameLogic/PlugIns/SelfDefensePlugIn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace MUnique.OpenMU.GameLogic.PlugIns;
/// Updates the state of the active self defenses on every second and every hit.
/// </summary>
[PlugIn(nameof(SelfDefensePlugIn), "Updates the state of the self defense system.")]
[Guid("3E702A15-653A-48EF-899C-4CDB2239A90C")]
[Guid("BA4753EA-4D2B-488C-BB6B-4A127E28630A")]
public class SelfDefensePlugIn : IPeriodicTaskPlugIn, IAttackableGotHitPlugIn, ISupportCustomConfiguration<SelfDefensePlugInConfiguration>, ISupportDefaultCustomConfiguration
{
/// <inheritdoc />
Expand Down
2 changes: 1 addition & 1 deletion tests/MUnique.OpenMU.ChatServer.Tests/ChatClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public async Task SentMessageEncryptedProperlyAsync()
var duplexPipe = new DuplexPipe();
var connection = new Connection(duplexPipe, null, null, new NullLogger<Connection>());
var client = new ChatClient(connection, manager, new NullLogger<ChatClient>());
var expectedPacket = new byte[] { 0xC1, 0x0C, 0x04, 0x01, 0x06, 0xBD, 0x8E, 0xEA, 0xBD, 0x8E, 0xEA, 0xFC };
var expectedPacket = new byte[] { 0xC1, 0x0B, 0x04, 0x01, 0x06, 0xBD, 0x8E, 0xEA, 0xBD, 0x8E, 0xEA };
await client.SendMessageAsync(1, "AAAAAA").ConfigureAwait(false);
var sendResult = await duplexPipe.SendPipe.Reader.ReadAsync().ConfigureAwait(false);
var sentPacket = sendResult.Buffer.ToArray();
Expand Down

0 comments on commit 2b08e9e

Please sign in to comment.