muffin v7.4.5
This commit is contained in:
parent
8461a561d3
commit
bb09805213
11 changed files with 881 additions and 891 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -109,7 +109,6 @@ internal sealed class JournalData
|
|||
if (journalCategory.RowId != 0)
|
||||
{
|
||||
SeasonalEventsCategoryId = journalCategory.RowId;
|
||||
_logger.LogInformation("Resolved 'Seasonal Events' JournalCategory ID: {CategoryId}", SeasonalEventsCategoryId);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -121,7 +120,6 @@ internal sealed class JournalData
|
|||
SeasonalEventGenreIds = (from x in excelSheet
|
||||
where x.RowId != 0 && x.JournalCategory.RowId == journalData.SeasonalEventsCategoryId.Value
|
||||
select x.RowId).ToHashSet();
|
||||
_logger.LogInformation("Resolved {Count} seasonal event JournalGenre IDs from JournalCategory {CategoryId}: [{Ids}]", SeasonalEventGenreIds.Count, SeasonalEventsCategoryId.Value, string.Join(", ", SeasonalEventGenreIds.OrderBy((uint x) => x)));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -131,7 +129,6 @@ internal sealed class JournalData
|
|||
if (journalGenre.RowId != 0)
|
||||
{
|
||||
MoogleDeliveryGenreId = journalGenre.RowId;
|
||||
_logger.LogInformation("Resolved 'Delivery Moogle Quests' JournalGenre ID: {GenreId}", MoogleDeliveryGenreId);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -171,20 +168,19 @@ internal sealed class JournalData
|
|||
if (section != null)
|
||||
{
|
||||
int num = 0;
|
||||
foreach (Category category in section.Categories)
|
||||
{
|
||||
foreach (Genre genre in category.Genres)
|
||||
foreach (Category category in section.Categories)
|
||||
{
|
||||
genre.IsUnderOtherQuests = true;
|
||||
num++;
|
||||
foreach (Genre genre in category.Genres)
|
||||
{
|
||||
genre.IsUnderOtherQuests = true;
|
||||
num++;
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
_logger.LogInformation("Marked {Count} genres as under 'Other Quests' (OtherQuestsSectionRowId={Id})", num, valueOrDefault);
|
||||
}
|
||||
else
|
||||
{
|
||||
_logger.LogWarning("OtherQuestsSectionRowId = {Id} found, but matching Section not present in constructed Sections", valueOrDefault);
|
||||
}
|
||||
_logger.LogWarning("OtherQuestsSectionRowId = {Id} found, but matching Section not present in constructed Sections", valueOrDefault);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1220,7 +1220,7 @@ internal sealed class QuestData
|
|||
}
|
||||
else
|
||||
{
|
||||
_logger.LogWarning("ApplySeasonalOverride: Quest {QuestId} not found in QuestData (could not apply seasonal override)", questId);
|
||||
_ = value is UnlockLinkQuestInfo;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1228,7 +1228,6 @@ internal sealed class QuestData
|
|||
{
|
||||
ArgumentNullException.ThrowIfNull(info, "info");
|
||||
_quests[info.QuestId] = info;
|
||||
_logger.LogDebug("Added or replaced QuestInfo for {QuestId} in QuestData", info.QuestId);
|
||||
}
|
||||
|
||||
static QuestData()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue