Updated OnUpdate to match interface param name

This commit is contained in:
Chomp
2025-03-08 10:15:36 +00:00
parent c3671b4232
commit 1f22450c51
@@ -28,9 +28,9 @@ public class SaveCallbacks(
return "spt-save";
}
public bool OnUpdate(long secondsSinceLastRun)
public bool OnUpdate(long timeSinceLastRun)
{
if (secondsSinceLastRun > _coreConfig.ProfileSaveIntervalInSeconds)
if (timeSinceLastRun > _coreConfig.ProfileSaveIntervalInSeconds)
{
_saveServer.Save();
return true;