/// <summary>
    /// transition to the second tier of the scenario
    /// </summary>
    public void StartT2()
    {
        tier2 = true;
        //check for losTest true or false (true = pass; false = fail)
        if (currentState.getStateID() == STATE.HIGH_AGGRO)
        {
            //transition to T2 Boss Office

            SC.initializeT2(T2.OFFICE);
            //Debug.Log("Starting T2 Boss Office");
        }
        else
        {
            //transition to T2 Outside

            SC.initializeT2(T2.OUTSIDE);
            //Debug.Log("Starting T2 Outside");
        }
    }