From 42fa5e6e60aa1c414a20938c69956cc219ec4ec3 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sun, 23 Mar 2025 16:15:29 +0100 Subject: [PATCH] [7.2] Remove free fantasia config option --- .../5237_A Princely Persona.json | 27 ------------------- Questionable/Configuration.cs | 5 ++-- .../GeneralConfigComponent.cs | 13 --------- 3 files changed, 3 insertions(+), 42 deletions(-) diff --git a/QuestPaths/7.x - Dawntrail/Seasonal Events/Little Ladies' Day (2025)/5237_A Princely Persona.json b/QuestPaths/7.x - Dawntrail/Seasonal Events/Little Ladies' Day (2025)/5237_A Princely Persona.json index 13efe336..d8964a78 100644 --- a/QuestPaths/7.x - Dawntrail/Seasonal Events/Little Ladies' Day (2025)/5237_A Princely Persona.json +++ b/QuestPaths/7.x - Dawntrail/Seasonal Events/Little Ladies' Day (2025)/5237_A Princely Persona.json @@ -26,33 +26,6 @@ { "Sequence": 1, "Steps": [ - { - "DataId": 1052475, - "Position": { - "X": -22.354492, - "Y": 10.13581, - "Z": -241.41296 - }, - "TerritoryId": 133, - "InteractionType": "Interact", - "AetheryteShortcut": "Gridania", - "AethernetShortcut": [ - "[Gridania] Aetheryte Plaza", - "[Gridania] Mih Khetto's Amphitheatre" - ], - "SkipConditions": { - "AetheryteShortcutIf": { - "ExtraCondition": "SkipFreeFantasia", - "InSameTerritory": true, - "InTerritory": [ - 133 - ] - }, - "StepIf": { - "ExtraCondition": "SkipFreeFantasia" - } - } - }, { "DataId": 1051889, "Position": { diff --git a/Questionable/Configuration.cs b/Questionable/Configuration.cs index 4099fd3d..6dab0df1 100644 --- a/Questionable/Configuration.cs +++ b/Questionable/Configuration.cs @@ -1,4 +1,5 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using Dalamud.Configuration; using Dalamud.Game.Text; @@ -37,7 +38,7 @@ internal sealed class Configuration : IPluginConfiguration public bool ShowIncompleteSeasonalEvents { get; set; } = true; public bool ConfigureTextAdvance { get; set; } = true; - // TODO Temporary setting for 7.1 + // TODO Temporary setting, 7.2 adds another fantasia public bool PickUpFreeFantasia { get; set; } = true; } diff --git a/Questionable/Windows/ConfigComponents/GeneralConfigComponent.cs b/Questionable/Windows/ConfigComponents/GeneralConfigComponent.cs index 4087f915..24789209 100644 --- a/Questionable/Windows/ConfigComponents/GeneralConfigComponent.cs +++ b/Questionable/Windows/ConfigComponents/GeneralConfigComponent.cs @@ -141,19 +141,6 @@ internal sealed class GeneralConfigComponent : ConfigComponent Configuration.General.ConfigureTextAdvance = configureTextAdvance; Save(); } - - ImGui.Separator(); - ImGui.TextColored(ImGuiColors.DalamudYellow, "Patch 7.1 exclusive content"); - using (_ = ImRaii.PushIndent()) - { - bool pickUpFreeFantasia = Configuration.General.PickUpFreeFantasia; - if (ImGui.Checkbox("Try to pick up free limited-time fantasia during 'Little Ladies' Day' quests", - ref pickUpFreeFantasia)) - { - Configuration.General.PickUpFreeFantasia = pickUpFreeFantasia; - Save(); - } - } } private void DrawCombatModule() -- 2.20.1