mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-12 18:55:51 -07:00
Update for 1.1_01 renames.
We know these updates (can) break plugins bypassing Bukkit. They are needed for smooth updates however. There will be another one right before before 1.1-R1.
This commit is contained in:
@@ -23,7 +23,7 @@ public class BlockSand extends Block {
|
||||
}
|
||||
|
||||
private void h(World world, int i, int j, int k) {
|
||||
if (g(world, i, j - 1, k) && j >= 0) {
|
||||
if (canFall(world, i, j - 1, k) && j >= 0) {
|
||||
byte b0 = 32;
|
||||
|
||||
if (!instaFall && world.a(i - b0, j - b0, k - b0, i + b0, j + b0, k + b0)) {
|
||||
@@ -36,7 +36,7 @@ public class BlockSand extends Block {
|
||||
} else {
|
||||
world.setTypeId(i, j, k, 0);
|
||||
|
||||
while (g(world, i, j - 1, k) && j > 0) {
|
||||
while (canFall(world, i, j - 1, k) && j > 0) {
|
||||
--j;
|
||||
}
|
||||
|
||||
@@ -51,7 +51,7 @@ public class BlockSand extends Block {
|
||||
return 3;
|
||||
}
|
||||
|
||||
public static boolean g(World world, int i, int j, int k) {
|
||||
public static boolean canFall(World world, int i, int j, int k) {
|
||||
int l = world.getTypeId(i, j, k);
|
||||
|
||||
if (l == 0) {
|
||||
|
Reference in New Issue
Block a user