muffin v6.35 with old pdb
This commit is contained in:
parent
ac85599236
commit
b5d2cc6708
31 changed files with 958 additions and 958 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue