Trigger Happy (Teleportation Tutorial)

Sorry, most of your steps were unnecessary to me. I’ve just modified these as you said:

You no longer need The Furnace, but will need to install Advanced Macros .

Lastly, under the dae\module\ folder there is the daeMacros.js file. Open this in notepad, and find the line with: export let teleportToToken . Scroll down a bit and the last line says “ return teleport(token, …) ”. This is the line that has the mistake. Where it says “target.token.x” it needs to be “target.token.data.x”. The entire line needs to be replaced with:

return teleport(token, target.scene, target.token.data.x + xGridOffset * target.scene.data.grid, target.token.data.y + yGridOffset * canvas.scene.data.grid);