muffin v7.5.1

This commit is contained in:
alydev 2026-05-01 08:59:48 +10:00
parent a6481e7b9a
commit 965a736f84
59 changed files with 4112 additions and 5059 deletions

View file

@ -1,4 +1,3 @@
using System;
using Dalamud.Bindings.ImGui;
using Dalamud.Game.Text;
using Dalamud.Interface;
@ -39,19 +38,10 @@ internal sealed class QuestTooltipComponent
public void Draw(IQuestInfo questInfo)
{
//IL_0000: Unknown result type (might be due to invalid IL or missing references)
//IL_0005: Unknown result type (might be due to invalid IL or missing references)
TooltipDisposable val = ImRaii.Tooltip();
try
using ImRaii.TooltipDisposable tooltipDisposable = ImRaii.Tooltip();
if (tooltipDisposable.Alive)
{
if (((TooltipDisposable)(ref val)).Alive)
{
DrawInner(questInfo, showItemRewards: true);
}
}
finally
{
((TooltipDisposable)(ref val)).Dispose();
DrawInner(questInfo, showItemRewards: true);
}
}
@ -153,15 +143,10 @@ internal sealed class QuestTooltipComponent
}
else
{
DisabledDisposable val = ImRaii.Disabled();
try
using (ImRaii.Disabled())
{
_uiUtils.ChecklistItem($"Unknown Quest ({previousQuest.QuestId})", ImGuiColors.DalamudGrey, FontAwesomeIcon.Question);
}
finally
{
((IDisposable)val)?.Dispose();
}
}
}
}