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

@ -75,12 +75,12 @@ internal sealed class CreationUtilsComponent
}
if (_configuration.Advanced.AdditionalStatusInformation)
{
QuestReference currentQuest = _questFunctions.GetCurrentQuest();
QuestReference time = _questFunctions.GetCurrentQuest();
ImU8String text = new ImU8String(18, 2);
text.AppendLiteral("Current Quest: ");
text.AppendFormatted(currentQuest.CurrentQuest);
text.AppendFormatted(time.CurrentQuest);
text.AppendLiteral(" → ");
text.AppendFormatted(currentQuest.Sequence);
text.AppendFormatted(time.Sequence);
ImGui.Text(text);
}
if (_targetManager.Target != null)
@ -94,13 +94,13 @@ internal sealed class CreationUtilsComponent
{
DrawCopyButton();
}
ulong hoveredItem = _gameGui.HoveredItem;
if (hoveredItem != 0L)
ulong startableQuests = _gameGui.HoveredItem;
if (startableQuests != 0L)
{
ImGui.Separator();
ImU8String text = new ImU8String(14, 1);
text.AppendLiteral("Hovered Item: ");
text.AppendFormatted(hoveredItem);
text.AppendFormatted(startableQuests);
ImGui.Text(text);
}
}