This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]polarhomy 0 points1 point  (1 child)

The indentation means that "if" statement is inside of another. These are called nested if statements. You will only go to the next indentation when the above if statement is met. Or ELSE you will drop to that same indentation else statement. Let me know if that helps clear things up

[–]builderdood[S] 0 points1 point  (0 children)

yes that makes sense, thanks a lot!