setBlockData -> setBlockState

This commit is contained in:
dfsek
2021-12-17 08:40:02 -07:00
parent 23fcd4a651
commit 31e20b12c0
8 changed files with 15 additions and 15 deletions
@@ -113,7 +113,7 @@ public class TerraFlora implements Structure {
.setIfPresent(Properties.EAST, faces.contains(Direction.EAST))
.setIfPresent(Properties.WEST, faces.contains(Direction.WEST));
}
world.setBlockData(location.clone().add(0, i + c, 0), data, physics);
world.setBlockState(location.clone().add(0, i + c, 0), data, physics);
}
return true;
}
@@ -106,7 +106,7 @@ public class VanillaOre implements Structure {
if(y >= world.getMaxHeight() || y < world.getMinHeight()) continue;
BlockType block = world.getBlockState(x, y, z).getBlockType();
if((d13 * d13 + d14 * d14 + d15 * d15 < 1.0D) && getReplaceable().contains(block)) {
world.setBlockData(x, y, z, getMaterial(block), isApplyGravity());
world.setBlockState(x, y, z, getMaterial(block), isApplyGravity());
}
}
}
@@ -52,7 +52,7 @@ public class SpongeStructure implements Structure {
for(int y = 0; y < blocks[z].length; y++) {
BlockState state = blocks[x][z][y];
if(state == null) continue;
world.setBlockData(bX + rX, bY + y, bZ + rZ, state);
world.setBlockState(bX + rX, bY + y, bZ + rZ, state);
}
}
}
@@ -89,7 +89,7 @@ public class SpongeStructure implements Structure {
for(int y = 0; y < blocks[z].length; y++) {
BlockState state = blocks[x][z][y];
if(state == null) continue;
world.setBlockData(bX + rX, bY + y, bZ + rZ, state);
world.setBlockState(bX + rX, bY + y, bZ + rZ, state);
}
}
}
@@ -25,7 +25,7 @@ public class BufferedPulledBlock implements BufferedItem {
Vector3 mutable = origin.clone();
while(mutable.getY() > world.getMinHeight()) {
if(!world.getBlockState(mutable).isAir()) {
world.setBlockData(mutable, data);
world.setBlockState(mutable, data);
break;
}
mutable.subtract(0, 1, 0);