From 5304c9abc3586d2662ebea0600076bd49820af8d Mon Sep 17 00:00:00 2001 From: goaaats Date: Fri, 2 May 2025 02:13:24 +0200 Subject: [PATCH] Fix CS obsoletion --- Dalamud/Game/ClientState/Fates/Fate.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Game/ClientState/Fates/Fate.cs b/Dalamud/Game/ClientState/Fates/Fate.cs index de17478a0..2da2dde9d 100644 --- a/Dalamud/Game/ClientState/Fates/Fate.cs +++ b/Dalamud/Game/ClientState/Fates/Fate.cs @@ -250,5 +250,5 @@ internal unsafe partial class Fate : IFate /// /// Gets the territory this is located in. /// - public RowRef TerritoryType => LuminaUtils.CreateRef(this.Struct->MapMarkers[0].TerritoryId); + public RowRef TerritoryType => LuminaUtils.CreateRef(this.Struct->MapMarkers[0].MapMarkerData.TerritoryTypeId); }