public void ApplyStatChanges()
    {
        int[] tempStats = new int[6];
        for (int i = 0; i < statContainers.Length; i++)
        {
            tempStats[i] = statContainers[i].statValue;
        }


        stats.ApplyLevel(tempStats);
        GetInfo();
        PlayerController.instance.unitInfoChanged();
    }