Fix unfocused in eureka

This commit is contained in:
Infi
2024-04-11 15:31:36 +02:00
parent 4ebd072ad4
commit 1243501067
2 changed files with 19 additions and 21 deletions
+1 -2
View File
@@ -10,7 +10,6 @@ using Dalamud.Memory;
using Dalamud.Plugin.Services;
using Dalamud.Utility.Signatures;
using FFXIVClientStructs.FFXIV.Client.System.Framework;
using FFXIVClientStructs.FFXIV.Client.System.Memory;
using FFXIVClientStructs.FFXIV.Client.System.String;
using FFXIVClientStructs.FFXIV.Client.UI;
using FFXIVClientStructs.FFXIV.Client.UI.Agent;
@@ -565,7 +564,7 @@ internal sealed unsafe class Chat : IDisposable {
{
playerName = MemoryHelper.ReadStringNullTerminated(agent + 0xDA);
worldId = *(ushort*) (agent + 0x120);
Plugin.Log.Debug($"Detected tell target '{playerName}'@{worldId:X}");
Plugin.Log.Debug($"Detected tell target '{playerName}'@{worldId}");
}
Channel = ((InputChannel) channel, nameChunks, playerName, worldId);