3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 05:20:05 +01:00

Fixed the behaviour of fluid blocks. Fixes BUKKIT-629

Dieser Commit ist enthalten in:
EvilSeph 2012-01-26 19:58:17 -05:00
Ursprung 5bcb23502e
Commit 5900268e7a

Datei anzeigen

@ -180,7 +180,7 @@ public abstract class BlockFluids extends Block {
super.a(world, i, j, k, random); super.a(world, i, j, k, random);
} }
public void postPlace(World world, int i, int j, int k, int l) { // CraftBukkit - onPlace(World, int, int, int) -> postPlace(World, int, int, int, int) public void onPlace(World world, int i, int j, int k) {
this.i(world, i, j, k); this.i(world, i, j, k);
} }