From 0ba2a573d9782030cb4685329e06eb32d2de9ea8 Mon Sep 17 00:00:00 2001
From: goat <16760685+goaaats@users.noreply.github.com>
Date: Fri, 27 Aug 2021 01:19:12 +0200
Subject: [PATCH] fix: use correct SetFocusTarget
---
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 6bfde3789..5fd291d7f 100644
--- a/Dalamud/Game/ClientState/Objects/TargetManager.cs
+++ b/Dalamud/Game/ClientState/Objects/TargetManager.cs
@@ -92,7 +92,7 @@ namespace Dalamud.Game.ClientState.Objects
/// Sets the focus target.
///
/// Actor to target.
- public void SetFocusTarget(GameObject? actor) => this.SetTarget(actor?.Address ?? IntPtr.Zero);
+ public void SetFocusTarget(GameObject? actor) => this.SetFocusTarget(actor?.Address ?? IntPtr.Zero);
///
/// Sets the previous target.