zebra fix merge

This commit is contained in:
Chayapak Supasakul 2024-12-28 20:52:38 -05:00
commit 84c7ad673c

View file

@ -116,7 +116,7 @@ public class CommandCore {
try { try {
for (int x = withPos.getMinX(); x <= withPos.getMaxX(); x++) { for (int x = withPos.getMinX(); x <= withPos.getMaxX(); x++) {
for (int y = withPos.getMinY(); y <= withPos.getMaxY(); y++) { for (int y = withPos.getMinY(); y <= withPos.getMaxY(); y++) {
for (int z = withPos.getMaxZ(); z <= withPos.getMaxZ(); z++) { for (int z = withPos.getMinZ(); z <= withPos.getMaxZ(); z++) {
final BlockPos pos = new BlockPos(x, y, z); final BlockPos pos = new BlockPos(x, y, z);
final Block block = world.getBlockState(pos).getBlock(); final Block block = world.getBlockState(pos).getBlock();