From b726c623c9ec6bcbc95e8d195fc8b70055751136 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Thu, 9 Feb 2023 08:36:29 +0100 Subject: [PATCH] fix(client): temporarily disable detection of pet walk user operation --- src/Core/NosSmooth.LocalClient/UserActionDetector.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Core/NosSmooth.LocalClient/UserActionDetector.cs b/src/Core/NosSmooth.LocalClient/UserActionDetector.cs index e50fe27..214d0e5 100644 --- a/src/Core/NosSmooth.LocalClient/UserActionDetector.cs +++ b/src/Core/NosSmooth.LocalClient/UserActionDetector.cs @@ -162,11 +162,12 @@ public class UserActionDetector /// Whether the action is a user action. public bool IsPetWalkUserOperation(PetManager petManager, ushort x, ushort y) { - if (_handlingDisabled) + return false; // TODO: implement user action detection for petwalk + /*if (_handlingDisabled) { return false; } - return true; + return true;*/ } } \ No newline at end of file -- 2.49.0