I have an If statement that looks like this:
if (condition1 == "True" && condition2 == "True" && condition3 == "True" && condition4 == "True")
Instead of having to change every value during debugging, is it possible to automatically change the value of condition1 to condition4 to "True" when the breakpoint's hit?
I just want the debugger to enter the If statement even though the conditions aren't met. It's a pain in the butt to edit every value once the If statement's hit.

