1
0
Fork 0
mirror of https://github.com/haselkern/Minecraft-ArmorStand.git synced 2025-05-18 05:55:35 +00:00

local changes

This commit is contained in:
BuildTools 2017-09-13 20:28:23 -04:00
parent 6bd04f3ead
commit 0891fdd04a

View file

@ -293,7 +293,18 @@ function handleInput(){
rotation = getRangeInput("rotation");
xPos = getInput("x-coord");
yPos = getInput("y-coord");
zPos = getInput("z-coord")
zPos = getInput("z-coord");
console.log(xPos + "." + yPos + "." + zPos);
if (xPos == "") {
xPos = "~";
}
if (yPos == "") {
yPos = "~";
}
if (zPos == "") {
zPos = "~";
}
console.log(xPos + "." + yPos + "." + zPos);
updateUI();
}
function getCheckBoxInput(name){