fix: it's check seconds, not minutes

This commit is contained in:
Anna 2023-11-14 21:14:55 -05:00
parent c3c52a8f1f
commit e0621f0a0f
Signed by: anna
GPG Key ID: D0943384CD9F87D1
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ public class Plugin : IDalamudPlugin {
return;
}
if (!this._checkNow && this.Stopwatch.Elapsed < TimeSpan.FromMinutes(this._checkSeconds)) {
if (!this._checkNow && this.Stopwatch.Elapsed < TimeSpan.FromSeconds(this._checkSeconds)) {
return;
}