DarkEmu_GameServer.Systems.StopPickUpTimer C# (CSharp) Метод

StopPickUpTimer() публичный Метод

public StopPickUpTimer ( ) : void
Результат void
        void StopPickUpTimer()
        {
            if (Timer.Pickup != null)
            {
                //Should sniff state packet shortly.
                Timer.Pickup.Dispose();
                //Disable pickup bool
                Character.Action.PickUping = false;
            }
        }
Systems