DarkEmu_GameServer.Systems.StopPickUpTimer C# (CSharp) Method

StopPickUpTimer() public method

public StopPickUpTimer ( ) : void
return void
        void StopPickUpTimer()
        {
            if (Timer.Pickup != null)
            {
                //Should sniff state packet shortly.
                Timer.Pickup.Dispose();
                //Disable pickup bool
                Character.Action.PickUping = false;
            }
        }
Systems