Add hint for snipe setting

pull/49/head
Liza 2024-09-14 00:18:02 +02:00
parent 01d120efe8
commit 412d157f0d
Signed by: liza
GPG Key ID: 7199F8D727D55F67
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<Project> <Project>
<PropertyGroup> <PropertyGroup>
<Version>3.2</Version> <Version>3.3</Version>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@ -92,6 +92,7 @@ internal sealed class ConfigWindow : LWindow, IPersistableWindowConfig
if (ImGui.CollapsingHeader("Cheats")) if (ImGui.CollapsingHeader("Cheats"))
{ {
ImGui.TextColored(ImGuiColors.DalamudRed, "This setting will be removed in a future version, and will be\navailable through TextAdvance instead.");
bool automaticallyCompleteSnipeTasks = _configuration.General.AutomaticallyCompleteSnipeTasks; bool automaticallyCompleteSnipeTasks = _configuration.General.AutomaticallyCompleteSnipeTasks;
if (ImGui.Checkbox("Automatically complete snipe tasks", ref automaticallyCompleteSnipeTasks)) if (ImGui.Checkbox("Automatically complete snipe tasks", ref automaticallyCompleteSnipeTasks))
{ {