- Fix tells not working in Forays

This commit is contained in:
Infi
2025-06-09 09:50:14 +02:00
parent 3951c49e1a
commit f3783e9abf
4 changed files with 12 additions and 8 deletions
+3 -2
View File
@@ -28,6 +28,7 @@ public static class Sheets
EventItemHelpSheet = Plugin.DataManager.GetExcelSheet<EventItemHelp>();
}
public static bool IsInForay() => TerritorySheet.TryGetRow(Plugin.ClientState.TerritoryType, out var row) &&
row.TerritoryIntendedUse.RowId == 41;
public static bool IsInForay() =>
TerritorySheet.TryGetRow(Plugin.ClientState.TerritoryType, out var row) &&
row.TerritoryIntendedUse.RowId is 41 or 61;
}