Add 'allow-physics' setting in each bucket type. (Default enabled)
Code (YAML):
# Allow Physics means that the placed block will change (e.g. water/lava will flow) # If you set this to false, there may be issues with physics or changes to the generated blocks. allow-physics: true
Code (YAML):
water:
material: WATER
direction-list: - NORTH
- SOUTH
- EAST
- WEST
direction-mode: SINGLE
infinite-mode: false
allow-physics: true
infinite-price: 0.0
max-horizontal: 30
max-vertical: 2
item:
material: WATER_BUCKET
display-name: "<color:#FF0000>Bucket of Waters" lore: -
"<gray>Contains 30 blocks of water" -
"<gray>in a horizontal direction."
[Debug] Add more messages to generator task to help solve problems quicker.
[Bug Fix] Fixed issue with block type detection.
[Bug Fix] Fixed missing message when using a bucket in the wrong direction.
[New Feature] Added optional bucket placing cooldown to configuration.
New Configuration Settings:
Code (YAML):
# How many milliseconds must players wait between placing buckets? # 1000 millis = 1 second # Default: 1000 placing-delay: 1000
Code (YAML):
error:
invalid-direction: "<red>That bucket doesn't work in that direction.</red>" bucket-cooldown: "<red>You must wait <gray>{time_left} seconds</gray> before placing another bucket.</red>"
# What is the maximum y-coordinate that can be generated? # If this value is not set, the world height will be used. # Values higher than the world height will be ignored. max-y: 255