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

added marker tag

This commit is contained in:
Lars Martens 2017-02-02 15:48:30 +01:00
parent a0b7cc4a2f
commit 6736163292
2 changed files with 5 additions and 0 deletions

View file

@ -52,6 +52,7 @@
<label><input type="checkbox" name="nogravity">No Gravity</label><br>
<label><input type="checkbox" name="showarms">Show Arms</label><br>
<label><input type="checkbox" name="small">Small</label><br>
<label><input type="checkbox" name="marker">Marker</label><br>
</div>
<div class="padding underline">

View file

@ -39,6 +39,7 @@ var noBasePlate = false;
var noGravity = false;
var showArms = false;
var small = false;
var marker = false;
var useEquipment;
var equipHandRight;
@ -272,6 +273,7 @@ function handleInput(){
noGravity = getCheckBoxInput("nogravity");
showArms = getCheckBoxInput("showarms");
small = getCheckBoxInput("small");
marker = getCheckBoxInput("marker");
useEquipment = getCheckBoxInput("useequipment");
equipHandRight = getInput("equipHandRight");
@ -417,6 +419,8 @@ function generateCode(){
tags.push("ShowArms:1b");
if(small)
tags.push("Small:1b");
if(marker)
tags.push("Marker:1b");
//Sliders
if(rotation != 0)