quick question please,

how can I make a boolean statement eqaul another booleans value?
what I have is not working

        if (defaultWeatherTrigger != defaultWeather) {
            defaultWeatherTrigger = (defaultWeather);
        }

Should work, I mean, it’s C#, this is how it works

So long as they are both boolean, what you have should work.

I found the problem, I accidentally typed an extra letter on one of my variables somehow when I was declaring it. I fixed that and it fixed my problem.