Set name visible when using a Name Tag on an Armor Stand

This commit is contained in:
Jason Penilla
2025-01-09 20:32:24 -08:00
committed by granny
parent ef5f2bc21a
commit 5055e6adb9
3 changed files with 12 additions and 34 deletions

View File

@@ -90,9 +90,11 @@ public class PurpurWorldConfig {
public float armorstandStepHeight = 0.0F;
public boolean armorstandSetNameVisible = false;
public boolean armorstandFixNametags = false;
private void armorstandSettings() {
armorstandStepHeight = (float) getDouble("gameplay-mechanics.armorstand.step-height", armorstandStepHeight);
armorstandSetNameVisible = getBoolean("gameplay-mechanics.armorstand.set-name-visible-when-placing-with-custom-name", armorstandSetNameVisible);
armorstandFixNametags = getBoolean("gameplay-mechanics.armorstand.fix-nametags", armorstandFixNametags);
}
public boolean arrowMovementResetsDespawnCounter = true;