// ======================================================================================
    private void UpdateThrowSubsystem()
    {
        if (IsAttacking)
        {
            return;
        }

        // GET INPUT
        bool doThrow = m_input.GetToss();

        // Try to Trigger Event, if possible
        if (doThrow && !IsAttacking)
        {
            ThrowWeapon();
        }
    }