muffin v6.35 with old pdb

This commit is contained in:
alydev 2025-10-29 06:52:53 +10:00
parent ac85599236
commit b5d2cc6708
31 changed files with 958 additions and 958 deletions

View file

@ -31,11 +31,11 @@ internal sealed class QuestProgressInfo
Variables = questWork.Variables.ToArray().ToList();
IsHidden = questWork.IsHidden;
ClassJob = (EClassJob)questWork.AcceptClassJob;
Span<byte> variables = questWork.Variables;
Span<byte> progress = questWork.Variables;
string text = "";
for (int i = 0; i < variables.Length; i++)
for (int i = 0; i < progress.Length; i++)
{
text = text + variables[i] + " ";
text = text + progress[i] + " ";
if (i % 2 == 1)
{
text += " ";