|
| 1 | +--- |
| 2 | +title: Configuration |
| 3 | +description: Configure block physics, redstone, weather and more |
| 4 | +--- |
| 5 | + |
| 6 | +All configuration options are stored in a JSON file using kebab-case naming. |
| 7 | + |
| 8 | +## Options |
| 9 | + |
| 10 | +| Option | Description | |
| 11 | +|-------------------------------|---------------------------------------------------------------------------------------------------------| |
| 12 | +| `disable-explosions` | Disable all explosions | |
| 13 | +| `disable-fading` | Disable block fading (fire burning out, coral dying without water, etc.) | |
| 14 | +| `disable-gravity` | Disable gravity for affected blocks (e.g., sand and gravel won't fall) | |
| 15 | +| `disable-leaves-decay` | Disable leaves decaying over time when not connected to a log | |
| 16 | +| `disable-physics` | Disable block physics (blocks like lanterns, ladders, and torches won't require adjacent block support) | |
| 17 | +| `disable-redstone` | Disable redstone functionality | |
| 18 | +| `disable-soil-trample` | Disable farmland trampling | |
| 19 | +| `disable-weather-changes` | Disable weather changes in all worlds | |
| 20 | +| `piston-sliming` | Right-click a piston with a slime ball to convert it to a sticky piston | |
| 21 | +| `fix-attack-speed` | Allows faster block breaking | |
| 22 | +| `prevent-dragon-egg-teleport` | Prevent dragon eggs from teleporting when right-clicked | |
| 23 | + |
| 24 | +## Example Configuration |
| 25 | + |
| 26 | +```json |
| 27 | +{ |
| 28 | + "disable-explosions": true, |
| 29 | + "disable-fading": true, |
| 30 | + "disable-gravity": false, |
| 31 | + "disable-leaves-decay": true, |
| 32 | + "disable-physics": false, |
| 33 | + "disable-redstone": false, |
| 34 | + "disable-soil-trample": true, |
| 35 | + "disable-weather-changes": true, |
| 36 | + "piston-sliming": true, |
| 37 | + "fix-attack-speed": true, |
| 38 | + "prevent-dragon-egg-teleport": true |
| 39 | +} |
| 40 | +``` |
0 commit comments