muffin v7.4.5
This commit is contained in:
parent
8461a561d3
commit
bb09805213
11 changed files with 881 additions and 891 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue