1
0
Fork 0
mirror of https://github.com/haselkern/Minecraft-ArmorStand.git synced 2025-05-17 15:05:33 +00:00

Fixed RightArm not appearing in the command.

This commit is contained in:
haselkern 2014-08-19 15:19:47 +02:00
parent e4b7d3be11
commit baa78e919f

View file

@ -309,7 +309,7 @@ function generateCode(){
if(!isZero(leftArm)) if(!isZero(leftArm))
pose.push("LeftArm:"+getJSONArray(leftArm)); pose.push("LeftArm:"+getJSONArray(leftArm));
if(!isZero(rightArm)) if(!isZero(rightArm))
pose.push("LeftArm:"+getJSONArray(rightArm)); pose.push("RightArm:"+getJSONArray(rightArm));
} }