NotNowBoss
Tera Guru

Hello,

Change it from an OR to AND.  

You're using OR between two conditions, like this:

if condition1 OR condition2

This means the code will proceed if either condition is true, even if the other is false.


Why you need AND

You want both conditions to be true at the same time for the logic to proceed. So, the correct logic is:

if condition1 AND condition2

This ensures the block only runs when both conditions are met.



(On the phone so i'll give this picture) 
image.png


View solution in original post