BlackFeeder.Entry.Laughing C# (CSharp) Method

Laughing() private static method

private static Laughing ( ) : void
return void
        private static void Laughing()
        {
            if (Environment.TickCount <= lastLaugh + 2500)
            {
                return;
            }

            Game.Say("/l");
            lastLaugh = Environment.TickCount;
        }