muffin v7.4

This commit is contained in:
alydev 2025-12-18 00:49:57 +10:00
parent 8a7847ff37
commit a4175abacd
54 changed files with 95984 additions and 123967 deletions

View file

@ -78,17 +78,17 @@ internal sealed class QuestTooltipComponent
}
if (quest.Root.Author.Count == 1)
{
text = new ImU8String(8, 1);
text.AppendLiteral("Author: ");
text.AppendFormatted(quest.Root.Author[0]);
ImGui.Text(text);
ImU8String text3 = new ImU8String(8, 1);
text3.AppendLiteral("Author: ");
text3.AppendFormatted(quest.Root.Author[0]);
ImGui.Text(text3);
}
else
{
text = new ImU8String(9, 1);
text.AppendLiteral("Authors: ");
text.AppendFormatted(string.Join(", ", quest.Root.Author));
ImGui.Text(text);
ImU8String text4 = new ImU8String(9, 1);
text4.AppendLiteral("Authors: ");
text4.AppendFormatted(string.Join(", ", quest.Root.Author));
ImGui.Text(text4);
}
}
else