From 0d9ffe6a3ee84d5cb55534516f3ddf31f815ede0 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Tue, 17 Jan 2023 21:14:18 +0100 Subject: [PATCH] chore: update dependencies --- src/Extensions/NosSmooth.ChatCommands/FeedbackService.cs | 1 + .../NosSmooth.Extensions.SharedBinding.csproj | 6 +++--- .../External/ExternalBrowser/ExternalBrowser.csproj | 2 +- .../SimplePiiBot/Responders/EntityJoinedResponder.cs | 1 + src/Samples/HighLevel/SimplePiiBot/SimplePiiBot.csproj | 8 ++++---- .../InterceptNameChanger/InterceptNameChanger.csproj | 4 ++-- .../InterceptNameChanger/NameChangeInterceptor.cs | 1 + src/Samples/LowLevel/InterceptNameChanger/NameChanger.cs | 1 + src/Samples/LowLevel/SimpleChat/SayResponder.cs | 1 + src/Samples/LowLevel/SimpleChat/SimpleChat.cs | 1 + src/Samples/LowLevel/SimpleChat/SimpleChat.csproj | 2 +- .../LowLevel/WalkCommands/Commands/WalkCommands.cs | 5 +++-- src/Samples/LowLevel/WalkCommands/WalkCommands.csproj | 8 ++++---- 13 files changed, 24 insertions(+), 17 deletions(-) diff --git a/src/Extensions/NosSmooth.ChatCommands/FeedbackService.cs b/src/Extensions/NosSmooth.ChatCommands/FeedbackService.cs index 31ab98f..66a98f5 100644 --- a/src/Extensions/NosSmooth.ChatCommands/FeedbackService.cs +++ b/src/Extensions/NosSmooth.ChatCommands/FeedbackService.cs @@ -7,6 +7,7 @@ using NosSmooth.Core.Client; using NosSmooth.Packets.Enums; using NosSmooth.Packets.Enums.Chat; +using NosSmooth.Packets.Enums.Entities; using NosSmooth.Packets.Server.Chat; using Remora.Results; diff --git a/src/Extensions/NosSmooth.Extensions.SharedBinding/NosSmooth.Extensions.SharedBinding.csproj b/src/Extensions/NosSmooth.Extensions.SharedBinding/NosSmooth.Extensions.SharedBinding.csproj index 43103fc..52537dd 100644 --- a/src/Extensions/NosSmooth.Extensions.SharedBinding/NosSmooth.Extensions.SharedBinding.csproj +++ b/src/Extensions/NosSmooth.Extensions.SharedBinding/NosSmooth.Extensions.SharedBinding.csproj @@ -7,9 +7,9 @@ - - - + + + diff --git a/src/Samples/External/ExternalBrowser/ExternalBrowser.csproj b/src/Samples/External/ExternalBrowser/ExternalBrowser.csproj index 2cb71ff..b197bb3 100644 --- a/src/Samples/External/ExternalBrowser/ExternalBrowser.csproj +++ b/src/Samples/External/ExternalBrowser/ExternalBrowser.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Samples/HighLevel/SimplePiiBot/Responders/EntityJoinedResponder.cs b/src/Samples/HighLevel/SimplePiiBot/Responders/EntityJoinedResponder.cs index 3730933..3fba94e 100644 --- a/src/Samples/HighLevel/SimplePiiBot/Responders/EntityJoinedResponder.cs +++ b/src/Samples/HighLevel/SimplePiiBot/Responders/EntityJoinedResponder.cs @@ -9,6 +9,7 @@ using NosSmooth.Game.Data.Entities; using NosSmooth.Game.Events.Core; using NosSmooth.Game.Events.Entities; using NosSmooth.Packets.Enums; +using NosSmooth.Packets.Enums.Players; using Remora.Results; namespace SimplePiiBot.Responders; diff --git a/src/Samples/HighLevel/SimplePiiBot/SimplePiiBot.csproj b/src/Samples/HighLevel/SimplePiiBot/SimplePiiBot.csproj index 61f24c3..2ca584d 100644 --- a/src/Samples/HighLevel/SimplePiiBot/SimplePiiBot.csproj +++ b/src/Samples/HighLevel/SimplePiiBot/SimplePiiBot.csproj @@ -11,10 +11,10 @@ - - - - + + + + diff --git a/src/Samples/LowLevel/InterceptNameChanger/InterceptNameChanger.csproj b/src/Samples/LowLevel/InterceptNameChanger/InterceptNameChanger.csproj index ddec801..9855246 100644 --- a/src/Samples/LowLevel/InterceptNameChanger/InterceptNameChanger.csproj +++ b/src/Samples/LowLevel/InterceptNameChanger/InterceptNameChanger.csproj @@ -18,8 +18,8 @@ - - + + diff --git a/src/Samples/LowLevel/InterceptNameChanger/NameChangeInterceptor.cs b/src/Samples/LowLevel/InterceptNameChanger/NameChangeInterceptor.cs index b7b3b1a..54f6262 100644 --- a/src/Samples/LowLevel/InterceptNameChanger/NameChangeInterceptor.cs +++ b/src/Samples/LowLevel/InterceptNameChanger/NameChangeInterceptor.cs @@ -10,6 +10,7 @@ using NosSmooth.Core.Client; using NosSmooth.LocalClient; using NosSmooth.Packets.Enums; using NosSmooth.Packets.Enums.Chat; +using NosSmooth.Packets.Enums.Entities; using NosSmooth.Packets.Server.Chat; namespace InterceptNameChanger diff --git a/src/Samples/LowLevel/InterceptNameChanger/NameChanger.cs b/src/Samples/LowLevel/InterceptNameChanger/NameChanger.cs index 78dd453..553e1a0 100644 --- a/src/Samples/LowLevel/InterceptNameChanger/NameChanger.cs +++ b/src/Samples/LowLevel/InterceptNameChanger/NameChanger.cs @@ -15,6 +15,7 @@ using NosSmooth.LocalClient; using NosSmooth.LocalClient.Extensions; using NosSmooth.Packets.Enums; using NosSmooth.Packets.Enums.Chat; +using NosSmooth.Packets.Enums.Entities; using NosSmooth.Packets.Server.Chat; using NosSmooth.PacketSerializer.Extensions; using NosSmooth.PacketSerializer.Packets; diff --git a/src/Samples/LowLevel/SimpleChat/SayResponder.cs b/src/Samples/LowLevel/SimpleChat/SayResponder.cs index 88609ab..f2501c8 100644 --- a/src/Samples/LowLevel/SimpleChat/SayResponder.cs +++ b/src/Samples/LowLevel/SimpleChat/SayResponder.cs @@ -8,6 +8,7 @@ using NosSmooth.Core.Client; using NosSmooth.Core.Packets; using NosSmooth.Packets.Enums; using NosSmooth.Packets.Enums.Chat; +using NosSmooth.Packets.Enums.Entities; using NosSmooth.Packets.Server.Chat; using Remora.Results; diff --git a/src/Samples/LowLevel/SimpleChat/SimpleChat.cs b/src/Samples/LowLevel/SimpleChat/SimpleChat.cs index ae48141..df4cc4b 100644 --- a/src/Samples/LowLevel/SimpleChat/SimpleChat.cs +++ b/src/Samples/LowLevel/SimpleChat/SimpleChat.cs @@ -13,6 +13,7 @@ using NosSmooth.LocalBinding; using NosSmooth.LocalClient.Extensions; using NosSmooth.Packets.Enums; using NosSmooth.Packets.Enums.Chat; +using NosSmooth.Packets.Enums.Entities; using NosSmooth.Packets.Server.Chat; using NosSmooth.PacketSerializer.Extensions; using NosSmooth.PacketSerializer.Packets; diff --git a/src/Samples/LowLevel/SimpleChat/SimpleChat.csproj b/src/Samples/LowLevel/SimpleChat/SimpleChat.csproj index 65f4c09..ab71469 100644 --- a/src/Samples/LowLevel/SimpleChat/SimpleChat.csproj +++ b/src/Samples/LowLevel/SimpleChat/SimpleChat.csproj @@ -18,7 +18,7 @@ - + diff --git a/src/Samples/LowLevel/WalkCommands/Commands/WalkCommands.cs b/src/Samples/LowLevel/WalkCommands/Commands/WalkCommands.cs index 0f12462..7fdcf31 100644 --- a/src/Samples/LowLevel/WalkCommands/Commands/WalkCommands.cs +++ b/src/Samples/LowLevel/WalkCommands/Commands/WalkCommands.cs @@ -12,6 +12,7 @@ using NosSmooth.Core.Extensions; using NosSmooth.Extensions.Pathfinding; using NosSmooth.Packets.Enums; using NosSmooth.Packets.Enums.Chat; +using NosSmooth.Packets.Enums.Entities; using NosSmooth.Packets.Server.Chat; using Remora.Commands.Attributes; using Remora.Commands.Groups; @@ -70,7 +71,7 @@ public class WalkCommands : CommandGroup return receiveResult; } - var command = new WalkCommand(x, y, petSelectors, 2, AllowUserCancel: isCancellable); + var command = new WalkCommand(x, y, null, 2, AllowUserCancel: isCancellable); var walkResult = await _client.SendCommandAsync(command, CancellationToken); if (!walkResult.IsSuccess) { @@ -120,7 +121,7 @@ public class WalkCommands : CommandGroup return receiveResult; } - var walkResult = await _walkManager.GoToAsync(x, y, isCancellable, CancellationToken, petSelectors); + var walkResult = await _walkManager.GoToAsync(x, y, isCancellable, CancellationToken); if (!walkResult.IsSuccess) { await _feedbackService.SendErrorMessageAsync diff --git a/src/Samples/LowLevel/WalkCommands/WalkCommands.csproj b/src/Samples/LowLevel/WalkCommands/WalkCommands.csproj index bee8e3c..ecd7287 100644 --- a/src/Samples/LowLevel/WalkCommands/WalkCommands.csproj +++ b/src/Samples/LowLevel/WalkCommands/WalkCommands.csproj @@ -31,16 +31,16 @@ 7.0.0 - 2.0.0 + 2.1.0 - 2.0.2 + 2.1.0 - 1.1.1 + 1.1.2 - 2.3.4 + 3.1.0 7.2.3 -- 2.48.1