Campfire option for lit when placed

This commit is contained in:
granny
2025-01-12 13:10:30 -08:00
committed by granny
parent 77adc2f882
commit 1284160bc4
3 changed files with 16 additions and 35 deletions

View File

@@ -835,6 +835,11 @@ public class PurpurWorldConfig {
cactusBreaksFromSolidNeighbors = getBoolean("blocks.cactus.breaks-from-solid-neighbors", cactusBreaksFromSolidNeighbors);
}
public boolean campFireLitWhenPlaced = true;
private void campFireSettings() {
campFireLitWhenPlaced = getBoolean("blocks.campfire.lit-when-placed", campFireLitWhenPlaced);
}
public boolean chestOpenWithBlockOnTop = false;
private void chestSettings() {
chestOpenWithBlockOnTop = getBoolean("blocks.chest.open-with-solid-block-on-top", chestOpenWithBlockOnTop);