feat: stand during spectral currents

This commit is contained in:
2026-08-07 15:23:19 -04:00
parent fa3c4078b6
commit 1f8ff12dc1
6 changed files with 207 additions and 32 deletions

View File

@@ -0,0 +1,10 @@
using Dalamud.Configuration;
namespace AutoFishingStool;
public sealed class Configuration : IPluginConfiguration
{
public int Version { get; set; } = 1;
public bool StandDuringSpectralCurrents { get; set; } = true;
}