From 0f4f9fa938faf12df796c8a4a6884436a444d32a Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Mon, 18 Nov 2024 23:24:04 -0500 Subject: [PATCH] swap default --- .github/workflows/build.yml | 2 +- BossMod/Autorotation/xan/Basexan.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f908e1719..193b6d437 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,7 @@ jobs: - name: Download Dalamud Latest run: | - wget https://goatcorp.github.io/dalamud-distrib/latest.zip -O ${{ env.DALAMUD_HOME }}.zip + wget https://goatcorp.github.io/dalamud-distrib/stg/latest.zip -O ${{ env.DALAMUD_HOME }}.zip unzip ${{ env.DALAMUD_HOME }}.zip -d ${{ env.DALAMUD_HOME }} - name: Restore Project diff --git a/BossMod/Autorotation/xan/Basexan.cs b/BossMod/Autorotation/xan/Basexan.cs index 5bbf3149b..c9645e150 100644 --- a/BossMod/Autorotation/xan/Basexan.cs +++ b/BossMod/Autorotation/xan/Basexan.cs @@ -2,7 +2,7 @@ public enum Targeting { Manual, Auto, AutoPrimary, AutoTryPri } public enum OffensiveStrategy { Automatic, Delay, Force } -public enum AOEStrategy { ST, AOE, ForceAOE, ForceST } +public enum AOEStrategy { AOE, ST, ForceAOE, ForceST } public enum SharedTrack { Targeting, AOE, Buffs, Count } @@ -432,8 +432,8 @@ public static RotationModuleDefinition DefineSharedTA(this RotationModuleDefinit .AddOption(xan.Targeting.AutoTryPri, "AutoTryPri", "Automatically select best target for AOE actions - if player has a target, ensure that target is hit"); def.Define(SharedTrack.AOE).As("AOE") - .AddOption(AOEStrategy.ST, "ST", "Use single-target actions") .AddOption(AOEStrategy.AOE, "AOE", "Use AOE actions if beneficial") + .AddOption(AOEStrategy.ST, "ST", "Use single-target actions") .AddOption(AOEStrategy.ForceAOE, "ForceAOE", "Always use AOE actions, even on one target") .AddOption(AOEStrategy.ForceST, "ForceST", "Forbid any action that can hit multiple targets");