Started by
Archmeides
on
Topic category: Help with Minecraft modding (Java Edition)
I have a custom block that checks if Block A is at x+1 coordinates and checks if there is nothing at x-1, then it changes to another block if this returns as true. However, it dosen't work.
Here is the procedure: https://ibb.co/bBPRRJ2
Here are the triggers: https://ibb.co/Wxvtkq2
And here is what it currently looks like in-game: https://ibb.co/M8b81JX
Right now you're checking for blocks at x value at 1, not x value at block position + 1. Replace the numbers in the X positions with the "x" parameter and a math plus block and the number, like x+ 1 and x + -1. This may help.