From 11073e6865546d2ac6d6b219c26ced9f3f14246b Mon Sep 17 00:00:00 2001
From: goat <16760685+goaaats@users.noreply.github.com>
Date: Tue, 28 Sep 2021 03:55:24 +0200
Subject: [PATCH] fix: SetMouseOverTarget()
---
Dalamud/Game/ClientState/Objects/TargetManager.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Dalamud/Game/ClientState/Objects/TargetManager.cs b/Dalamud/Game/ClientState/Objects/TargetManager.cs
index 5fd291d7f..d9372674c 100644
--- a/Dalamud/Game/ClientState/Objects/TargetManager.cs
+++ b/Dalamud/Game/ClientState/Objects/TargetManager.cs
@@ -86,7 +86,7 @@ namespace Dalamud.Game.ClientState.Objects
/// Sets the mouseover target.
///
/// Actor to target.
- public void SetMouseOverTarget(GameObject? actor) => this.SetTarget(actor?.Address ?? IntPtr.Zero);
+ public void SetMouseOverTarget(GameObject? actor) => this.SetMouseOverTarget(actor?.Address ?? IntPtr.Zero);
///
/// Sets the focus target.