#W# Fixed serialization but with PlayerConstructed.

This commit is contained in:
WarrentyExpired 2026-07-14 10:36:59 -04:00
parent 1d5ccf99dc
commit f698d96dbb
4 changed files with 7 additions and 4 deletions

View file

@ -8,7 +8,7 @@ namespace Server.Misc
public class AutoSave : Timer
{
private static TimeSpan m_Delay = TimeSpan.FromMinutes( Server.Misc.Settings.SaveInterval() );
private static TimeSpan m_Warning = TimeSpan.Zero;
private static TimeSpan m_Warning = TimeSpan.FromSeconds( 15.0 );
public static void Initialize()
{
@ -184,4 +184,4 @@ namespace Server.Misc
);
}
}
}
}