SetBool task won't call set on the tied property

Hi,

I have a property in my script like this.

Code:
public bool escapePause
        {
            get
            {
                return _escapePause;
            }

            set
            {
                _escapePause = value;
            }
        }

And I have a variable in the behavior tree tied to that property.
Bool Comparison seems to work as expected but Set Bool doesn't seem to call the set in the property.

Thanks for advance.
 
Top