
The walls script groups the entire path, which can be problematic if you need to make changes afterwards. I've been trying to separate each individual line by adding a !walls moveto before each curve, and realized it wouldn't be that easy (the final path on Roll20 ends up with some uncovered spots). So quickly checking the script's code I saw (I may be mistaken, js isn't my strong suit. It's not even my weak suit) that !walls lineto should also be supported, so I converted all curves into lines and got an error on the API: TypeError: p.slice(...)[0].slice is not a function TypeError: p.slice(...)[0].slice is not a function at apiscript.js:118:36 at Array.forEach (<anonymous>) at buildPath (apiscript.js:115:18) at Array.forEach (<anonymous>) at buildWalls (apiscript.js:169:49) at handleInput (apiscript.js:212:21) at eval (eval at <anonymous> (/home/node/d20-api-server/api.js:154:1), <anonymous>:65:16) at Object.publish (eval at <anonymous> (/home/node/d20-api-server/api.js:154:1), <anonymous>:70:8) at /home/node/d20-api-server/api.js:1663:12 at /home/node/d20-api-server/node_modules/firebase/lib/firebase-node.js:93:560 I thought maybe I was doing something wrong, so I tried to convert the svg using roll20api.net, but saw that there "L" was unsupported, and now I'm just not sure. I wanted to know if lines were supported, and if so, what the proper syntax would be to use them. Thanks!