muffin v6.19
This commit is contained in:
parent
4f297245f2
commit
d8da668e38
10 changed files with 1212 additions and 122 deletions
|
@ -212,6 +212,26 @@ internal sealed class GeneralConfigComponent : ConfigComponent
|
|||
ImGui.TextColored(in col, text);
|
||||
ImGui.Unindent();
|
||||
}
|
||||
bool v9 = base.Configuration.General.BatchAlliedSocietyTurnIns;
|
||||
if (ImGui.Checkbox("Batch allied society turn-ins", ref v9))
|
||||
{
|
||||
base.Configuration.General.BatchAlliedSocietyTurnIns = v9;
|
||||
Save();
|
||||
}
|
||||
ImGui.SameLine();
|
||||
using (ImRaii.PushFont(UiBuilder.IconFont))
|
||||
{
|
||||
ImGui.TextDisabled(FontAwesomeIcon.InfoCircle.ToIconString());
|
||||
}
|
||||
if (ImGui.IsItemHovered())
|
||||
{
|
||||
using (ImRaii.Tooltip())
|
||||
{
|
||||
ImGui.TextUnformatted("When enabled, allied society quests that share the same NPC will be turned in in a single conversation (batched).");
|
||||
ImGui.TextUnformatted("If disabled, each allied society quest will be turned in individually.");
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue