Disable loot drops on death by cramming

This commit is contained in:
William Blake Galbreath
2025-01-05 15:29:16 -08:00
committed by granny
parent a631cb7756
commit 188c30fff8
4 changed files with 27 additions and 46 deletions

View File

@@ -84,6 +84,11 @@ public class PurpurWorldConfig {
armorstandStepHeight = (float) getDouble("gameplay-mechanics.armorstand.step-height", armorstandStepHeight);
}
public boolean disableDropsOnCrammingDeath = false;
private void miscGameplayMechanicsSettings() {
disableDropsOnCrammingDeath = getBoolean("gameplay-mechanics.disable-drops-on-cramming-death", disableDropsOnCrammingDeath);
}
public double minecartMaxSpeed = 0.4D;
public boolean minecartPlaceAnywhere = false;
public boolean minecartControllable = false;