ACR_ServerCommunicator.GameWorldManager.UpdateServerCheckinTimestamp C# (CSharp) Method

UpdateServerCheckinTimestamp() private method

This method updates the checkin timestamp for ACR_TIME_SERVERTIME, for the local server. This must be periodically done from the query thread, as the main thread's DelayCommand (ACR_StoreTime()) may not run for an extended duration if the server is paused by a DM.
private UpdateServerCheckinTimestamp ( ) : void
return void
        private void UpdateServerCheckinTimestamp()
        {
            IALFADatabase Database = DatabaseLinkQueryThread;

            Database.ACR_SQLExecute(String.Format(
                "UPDATE `pwdata` SET `Last` = NOW() WHERE `Name` = '{0}' AND `Key` = 'ACR_TIME_SERVERTIME'",
                Database.ACR_SQLEncodeSpecialChars(LocalServerName)));
        }