OpenSim.Region.ScriptEngine.Shared.Api.LSL_Api.CheckSayShoutTime C# (CSharp) Method

CheckSayShoutTime() private method

private CheckSayShoutTime ( ) : void
return void
        private void CheckSayShoutTime()
        {
            DateTime now = DateTime.UtcNow;
            if ((now - m_lastSayShoutCheck).Ticks > 10000000) // 1sec
            {
                m_lastSayShoutCheck = now;
                m_SayShoutCount = 0;
            }
            else
                m_SayShoutCount++;
        }
LSL_Api