mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-29 19:52:55 +01:00
fixed bug where water wasn't flowing
This commit is contained in:
parent
0aa7b970ad
commit
8e66e52958
1 changed files with 1 additions and 1 deletions
|
@ -113,8 +113,8 @@ public class BlockFlowing extends BlockFluids {
|
|||
}
|
||||
// Craftbukkit all four cardinal directions. Do not change the order!
|
||||
BlockFace[] faces = new BlockFace[]{ BlockFace.North, BlockFace.South, BlockFace.East, BlockFace.West };
|
||||
int index = 0;
|
||||
for (BlockFace currentFace : faces) {
|
||||
int index = 0;
|
||||
if (aflag[index]) {
|
||||
BlockFromToEvent event = new BlockFromToEvent(Type.BLOCK_FLOW, source, currentFace);
|
||||
((WorldServer) world).getServer().getPluginManager().callEvent(event);
|
||||
|
|
Loading…
Reference in a new issue