Add option to set armorstand step height

This commit is contained in:
William Blake Galbreath
2025-01-05 14:17:27 -08:00
committed by granny
parent 4945212daf
commit e4247eb565
5 changed files with 36 additions and 59 deletions

View File

@@ -77,6 +77,11 @@ public class PurpurWorldConfig {
return value.isEmpty() ? fallback : value;
}
public float armorstandStepHeight = 0.0F;
private void armorstandSettings() {
armorstandStepHeight = (float) getDouble("gameplay-mechanics.armorstand.step-height", armorstandStepHeight);
}
public boolean idleTimeoutKick = true;
public boolean idleTimeoutTickNearbyEntities = true;
public boolean idleTimeoutCountAsSleeping = false;