mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-27 13:07:29 +01:00
Fix buckets not being checked properly.
This commit is contained in:
parent
0659a5263a
commit
7da3cc224b
@ -152,7 +152,9 @@ public void onPlaceBlock(final PlaceBlockEvent event) {
|
|||||||
final RegionAssociable associable = createRegionAssociable(event.getCause());
|
final RegionAssociable associable = createRegionAssociable(event.getCause());
|
||||||
|
|
||||||
// Don't check liquid flow unless it's enabled
|
// Don't check liquid flow unless it's enabled
|
||||||
if (Materials.isLiquid(type) && !getWorldConfig(event.getWorld()).checkLiquidFlow) {
|
if (event.getCause().getRootCause() instanceof Block
|
||||||
|
&& Materials.isLiquid(type)
|
||||||
|
&& !getWorldConfig(event.getWorld()).checkLiquidFlow) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user