Compare commits

...

2 Commits

Author SHA1 Message Date
Anna 350cca1ea2
chore(client): bump version to 1.0.5 2023-10-07 04:48:09 -04:00
Anna bb2f346805
fix(client): wait configured amount of time 2023-10-07 04:47:57 -04:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.4</Version>
<Version>1.0.5</Version>
<TargetFramework>net7.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

View File

@ -56,7 +56,7 @@ public class Plugin : IDalamudPlugin {
}
private void FrameworkUpdate(IFramework framework) {
if (this.Stopwatch.Elapsed < TimeSpan.FromSeconds(5) || this.ClientState.LocalPlayer is not { } localPlayer) {
if (this.Stopwatch.Elapsed < TimeSpan.FromSeconds(this.Config.UpdateFrequency) || this.ClientState.LocalPlayer is not { } localPlayer) {
return;
}