1
0
Fork 0
forked from aly/qstbak

muffin v7.4.4

This commit is contained in:
alydev 2025-12-23 09:48:23 +10:00
parent 5791858984
commit 8461a561d3
9 changed files with 29358 additions and 748 deletions

View file

@ -7,6 +7,7 @@ using System.Runtime.InteropServices;
using Dalamud.Plugin.Services;
using FFXIVClientStructs.FFXIV.Client.Game.UI;
using LLib.GameData;
using Lumina.Excel;
using Lumina.Excel.Sheets;
using Microsoft.Extensions.Logging;
using Questionable.Model;
@ -85,11 +86,12 @@ internal sealed class QuestData
startingCities[item.Quest.RowId] = b;
}
}
ExcelSheet<QuestEx> questExSheet = dataManager.GetExcelSheet<QuestEx>();
List<IQuestInfo> list = new List<IQuestInfo>();
list.AddRange(from x in dataManager.GetExcelSheet<Lumina.Excel.Sheets.Quest>()
where x.RowId != 0
where x.IssuerLocation.RowId != 0
select new QuestInfo(x, questChapters.GetValueOrDefault(x.RowId), startingCities.GetValueOrDefault(x.RowId), journalGenreOverrides));
select new QuestInfo(x, questExSheet.GetRow(x.RowId), questChapters.GetValueOrDefault(x.RowId), startingCities.GetValueOrDefault(x.RowId), journalGenreOverrides));
list.AddRange(from x in dataManager.GetExcelSheet<SatisfactionNpc>()
where x.RowId != 0 && x.Npc.RowId != 0
select new SatisfactionSupplyInfo(x));