Started by
Spicato
on
Topic category: Help with Minecraft modding (Java Edition)
Is there a way to list similar data in the procedures module using 'and/or' logic more efficiently than whats listed below?
ex.
If {(get block direction = N) or (get block direction = S) or (get block direction = E) or (get block direction = W)}
Then {...}
I'd imagine it would look something like:
If {(get block direction = N, S, E, W)}
Then {...}
But I cant seem to find any sort of nestable 'and/or' functions. Or am I missing something obvious?
Its in the logic tab, under the block that says "True" change the "=" to and/or
I'm currently using 2020.5 and that doesnt seem to be an option, was this something added for the 2021 release?
> Here <
just drag that in and click the " = " and it will bring up a drop down menu, select and / or from there
Ah ok gotchya, I wasnt aware that you could change the position of the inputs, thank you!